:root {
    --primary: #ff0000;
    --secondary: #fb6340;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;
}

/* Toaster */
.toaster {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    z-index: 999999999999;
    font-size: 14px;
}

.toaster p {
    margin: 0;
    padding: 0;
}

/* Image Zoom in out Start */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .popup-image {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border: 5px solid #fff;
    box-shadow: 0 0 30px #000;
    cursor: zoom-in;
  }

  .zoomed-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    z-index: 9999999;
    cursor: zoom-out;
  }

  .zoomed-image img {
    max-width: 100%;
    max-height: 100%;
    cursor: zoom-out;
  }
/* Image Zoom in out End */
