/**
 * /* Slide-in animation from the right
 *
 * @format
 */

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
        }

        .bg-white {
            background-color: rgb(255, 255, 255);
        }

        .bg-orange {
            background-color: #f36b37;
        }

        .text-orange {
            color: #f36b37;
        }

        .text-blue {
            color: #3ba0cc;
        }
        .bg-blue {
            background-color: #3ba0cc;
        }.bg-blue-color {
          background-color: #3BA0CC;
        }
        .orange-border {
            border: 1px solid #f36b37;
        }

        .text-white {
            color: rgb(255, 255, 255);
        }
  
        select {
  appearance: none; /* Remove the default dropdown arrow */
  -moz-appearance: none; /* For Firefox */
  -webkit-appearance: none; /* For Safari and Chrome */
  background-color: transparent; /* Make the background transparent */
  border: 1px solid #ccc; /* Add border for clarity */
  padding: 8px 32px 8px 8px; /* Add space for the custom arrow */
  position: relative;
}

/* Create a container for the select */
.select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Add the custom arrow */
.select-container::after {
  content: "▼"; /* Unicode for the arrow */
  font-size: 10px;
  color: #f36b37;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* Prevent the arrow from blocking clicks */
}

/* For small screens (phones) */
@media (max-width: 639px) {
    /* Styles for small screens */
    body {
        font-size: 12px;
    }

    .container {
        width: 100%;
    }

    .text {
        font-size: 14px;
    }
}

/* For medium screens (tablets) */
@media (min-width: 640px) and (max-width: 767px) {
    /* Styles for medium screens */
    body {
        font-size: 14px;
    }

    .container {
        width: 80%;
    }

    .text {
        font-size: 16px;
    }
}

/* For large screens (desktops) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Styles for large screens */
    body {
        font-size: 16px;
    }

    .container {
        width: 70%;
    }

    .text {
        font-size: 18px;
    }
}

/* For extra-large screens (larger desktops, wide screens) */
@media (min-width: 1024px) {
    /* Styles for extra-large screens */
    body {
        font-size: 18px;
    }

    .container {
        width: 60%;
    }

    .text {
        font-size: 20px;
    }
}



/* notification */
  #notification {
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }



/* DASHBOARD MODAL ENDS */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInFromRight 1s ease-out forwards;
}
