body{
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--light-bg);
  
}

:root{
  --teal: #2ec1ac;
  --teal_hover: #279e8c;

     --primary-color: #007bff; /* Example: A inviting blue */
    --secondary-color: #6c757d; /* Example: A muted gray */
    --accent-color: #ffc107; /* Example: A warm yellow for highlights */
    --light-bg: #efefef; /* Light background */
    --dark-text: #343a40; /* Dark text */
    --light-text: #e9ecef; /* Light text on dark backgrounds */
    --border-color: #dee2e6; /* Light border */

    --font-heading: 'Playfair Display', serif; /* Example elegant serif font */
    --font-body: 'Roboto', sans-serif; /* Example clean sans-serif font */
}

/* *{
  font-family: 'Poppins', sans-serif;
}
.h-font{
  font-family: 'Merienda', cursive;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.custom-bg{
  background-color: var(--teal);
  border: 1px solid var(--teal);
}
.custom-bg:hover{
  background-color: var(--teal_hover);
  border-color: var(--teal_hover);
}

.h-line{
  width: 150px;
  margin: 0 auto;
  height: 1.7px;
}

.btn-close,.custom_toggle {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* toggle  */
.custom_toggle .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: block;
}

.custom_toggle .navbar-toggler-icon::before,
.custom_toggle .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.custom_toggle .navbar-toggler-icon::before {
  top: -8px;
}

.custom_toggle .navbar-toggler-icon::after {
  top: 8px;
}


/* Animate on toggle */
.custom_toggle.collapsed .navbar-toggler-icon {
  transform: rotate(0);
}

.custom_toggle:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.custom_toggle:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.custom_toggle:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}


.custom-alert {
  position: fixed;
  top: 80px;
  right: 25px;
  z-index: 1111;

  max-width: 600px;
  width: 90%; /* small screens eke width eka 90% wenna */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-left: 6px solid #ffc107;
  padding: 15px 20px;
  border-radius: 4px;
}

  .loader {
      width: 48px;
      height: 48px;
      border: 5px dotted #FFF;
      border-radius: 50%;
      display: inline-block;
      position: relative;
      box-sizing: border-box;
      animation: rotation 2s linear infinite;
    }

    @keyframes rotation {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

/* Medium and smaller screens (tablets, mobiles) */
@media (max-width: 768px) {
  .custom-alert {
    top: 20px;     /* biraz upar athule space hadanna */
    right: 10px;   /* thiyana space kiyala danna */
    max-width: 90%; /* widther wenna ona mobile eke */
    width: auto;
    border-left-width: 4px; /* thawa chota karanna */
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
  .custom-alert {
    top: 10px;
    right: 5px;
    border-left-width: 3px;
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}
