@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  font-family: 'Poppins', sans-serif;
}
body {
  user-select: none;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* For all clickable elements */
a, button, input, textarea, i, label {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  user-select: none; /* Prevent text selection */
  -webkit-user-drag: none; /* Prevent drag in WebKit browsers (e.g., Chrome, Safari) */
  -moz-user-select: none; /* Firefox (older versions) */
  -ms-user-select: none; /* Internet Explorer and Edge */
  cursor: pointer; /* Optional: keeps the normal link cursor */
}

.no-scrollbar::-webkit-scrollbar { 
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */ 
  } 
  
.no-scrollbar { 
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

.notification-badge {
    position: relative;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top */
  transition: opacity 0.5s ease; /* Add fade transition */
}
.loading-screen{
  background-color:#9dffadbc;/* Or your desired background color */
}
.theme-dark .dark\:loading-screen {
  background-color:#2f5e37bc;
}
  
.loader {
  border: 8px solid #005c1c;
  border-radius: 50%;
  border-top: 8px solid #ffffff; /* Or your desired loader color */
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
  
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: red;
    color: white;
    border-radius: 9999px; /* Make it a circle */
    padding: 0.1rem 0.4rem;
    font-size: 0.6rem;
}
.text-justify {
   text-align: justify; 
  }
  .bg-green-6000 {
    background-color:#3c9458;
  }
  .bg-orange-6000 {
    background-color:#ffb758;
  }
  .bg-green-600 {
    background-color:#03b612;
  }
  .bg-white1 {
    background-color:#f7fff9;
  }
  .bg-white2 {
    background-color:#ffffff;
  }
  .bg-resee {
    background-color:#64e17b;
  }
  .bg-gray-100bg {
    background-color:#e6e6e6;
  }

  .text-green1-600 {
    color:#14e625;
  }
  .bg-blue1-500{
    background: linear-gradient(135deg, #71ed6d, #2db021);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.7s ease;
  }
  .hover\:bg-blue1-500:hover{
    background: rgba(0, 255, 123, 0.798);
    cursor: pointer;
    transition: background 0.7s ease;
  }
  
  .text-sm1 {
    font-size: 12px; /* 14px */
    line-height: 1.15rem; /* 20px */
  }
  .w-img-d1{
    width: 100%;
    height: 400px;
  }

  .w-img-d11{
    width: 100%;
    height: 500px;
  }
  .w-img-sd{
    width: 100%;
    height: 600px;
  }
  .w-lp{
    width: 150px;
    max-width: 150px;
  }
  .w-lp1{
    width: 200px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 4px;
    height: 70px;
    max-width: 150px;
  }
  .w-lp2{
    margin-left:-4px;
    margin-right: 6px;
  }
  .inh-1{
    height: 35px;
    user-select: none;
    border: 1.5px solid #446a455e;
  }
  .inh-2{
    height: 63px;
    user-select: none;
    border: 1.5px solid #446a455e;
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  .text-sm3 { 
    font-size: 10px; /* 14px */ 
  }
  .textB{
    color: #0f2708;
  }
  .border-gray-8001{
    border-color:#414141a8;
  }
  .limited-textsc { 
    width: 19ch; /* Limit to 10 characters */ 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }
  .limited-text { 
    width: 23ch; /* Limit to 10 characters */ 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }
  .limited-textadmin { 
    width: 10ch; /* Limit to 10 characters */ 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }
  .limited-textadmin1 { 
    width: 10ch; /* Limit to 10 characters */ 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }
  .limited-textadmin2 { 
    width: 10ch; /* Limit to 10 characters */ 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }

.pl-71 { 
  padding-left: 23px; /* 28px */ 
}
.pl-7i1 { 
  padding-left: 17px; /* 28px */ 
}

/* Note Status Column */
.note-status-column {
  text-align: center; /* Centers the content horizontally */
  vertical-align: middle; /* Centers the content vertically */
  padding: 8px 8px; /* Adds padding for spacing */
}

/* Text for larger screens */
.note-status-text {
  font-size: 12px; /* Smaller font size */
  font-weight: 600;
  text-align: center; /* Center-align the text */
  padding: 4px 1px; /* Reduced padding */
  border-radius: 15px; /* Slightly rounded corners */
  display: inline-block;

}

/* Status Styles */
.status-done {
  color: #009650; /* Dark green text */
  background-color: #67cd9f; /* Light green background */
}

.status-not-saved {
  color: #842029; /* Dark red text */
  background-color: #f8d7da; /* Light red background */
}

.icon-done {
  color: #0a9152; /* Dark green */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

.icon-pending {
  color: #e98400; /* Dark green */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

.icon-delete1 {
  color: #e98400; /* Dark green */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}
.icon-previous {
  color: #51dc00; /* Dark green */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}
.icon-next {
  color: #51dc00; /* Dark green */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}
/* Style for the "Not Saved" icon */
.icon-not-saved {
  color: #bd2633; /* Dark red */
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

input[type="checkbox"].form-checkbox {
  border: none; /* Removes the border */
  outline: none; /* Removes any outline */
}


/* Default styles for the delete button */
.delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* Add spacing between text and icon */
  margin-top: 5px;
}

/* Hide the text and show the icon on smaller screens */
@media (max-width: 768px) {
  .delete-text {
    display: none; /* Hide the text on smaller screens */
  }

  .delete-icon {
    display: inline-block; /* Show the icon on smaller screens */
    width: 18px; /* Adjust icon size */
    height: 18px; /* Adjust icon size */
  }
}

/* Show the text and hide the icon on larger screens */
@media (min-width: 769px) {
  .delete-text {
    display: inline; /* Show the text on larger screens */
  }

  .delete-icon {
    display: none; /* Hide the icon on larger screens */
  }
}


/* Icon for smaller screens */
.note-status-icon {
  display: inline-block; /* Ensures the icon is inline */
  text-align: center; /* Centers the icon */
  margin-top: 5px;
}
.line-through2 {
  text-decoration-line: line-through; /* Adds the strikethrough effect */
  color: rgb(214, 63, 63); /* Sets the text color to red */
  font-weight: bold; /* Makes the text bold */
}
.note-status-icon svg {
  width: 20px; /* Equivalent to Tailwind's w-5 */
  height: 20px; /* Equivalent to Tailwind's h-5 */
  margin: 0 auto; /* Centers the icon horizontally */
}

/* Status Styles */
.status-done {
  color: #10b981; /* Green text */
  background-color: #d1fae5; /* Light green background */
}

.status-not-saved {
  color: #f97316; /* Orange text */
  background-color: #ffedd5; /* Light orange background */
}

/* Media Query for Larger Screens */
@media (min-width: 640px) {
  .note-status-text {
    display: inline; /* Shows the text on larger screens */
  }
  .note-status-icon {
    display: none; /* Hides the icon on larger screens */
  }
}

/* Default: Hide text for smaller screens */
.note-status-text {
  display: none; /* Hide by default */
}
@media (max-width: 884px) and (max-height: 1104px) {
  .note-status-text {
    display: none !important; /* Force hiding the text */
  }

  .note-status-icon {
    display: inline-block !important; /* Ensure the SVG is displayed */
  }

  .note-status-icon svg {
    width: 24px; /* Adjust the size of the SVG */
    height: 24px;
    margin: 0 auto; /* Center the SVG */
  }
}

/* Media Query for Larger Screens */
@media (min-width: 640px) {
  .note-status-text {
    display: inline; /* Show text on larger screens */
  }
}

/* Hide the element by default */
.note-status {
  display: none;
}

/* Show the element on larger screens (e.g., 768px and above) */
@media (min-width: 768px) {
  .note-status {
    display: inline-block;
  }
}

/* Hide the default checkbox */
.hidden-checkbox {
  display: none;
}

/* Style the custom checkbox as a grid icon */
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px; /* Adjust size as needed */
  height: 17px; /* Adjust size as needed */
  border: 1px solid; /* Green border */
  border-radius: 3px; /* Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Default icon color */
.icon-checkbox {
  width: 15px; /* Adjust size as needed */
  height: 15px; /* Adjust size as needed */
  transition: color 0.3s ease;
}

/* When the checkbox is checked */
.hidden-checkbox:checked + .icon-checkbox {
  color: #6e6e6e; /* White grid icon */
  border-radius: 4px;
}

.paginationwrapperjopy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  border-bottom-left-radius: 0.5rem; /* Rounded bottom-left corner */
  border-bottom-right-radius: 0.5rem; /* Rounded bottom-right corner */
}

.paginationinfojopy {
  font-size: 14px;
}

/* Responsive styles for smaller screens */
@media (max-width: 600px) {
  .paginationinfojopy {
    font-size: 9px;
  }
}

.paginationjopy {
  display: flex;
  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Centers the content vertically */
  gap: 10px; /* Add spacing between elements */
}

.paginationjopy button,
.paginationjopy a {
  padding: 6px 16px;
  background-color: #ffffff;
  border: 1px solid #d1d5db; /* light gray border */
  border-radius: 6px;
  color: #375139;
  font-size: 14px;
  cursor: pointer;
  text-align: center; /* Center-align text */
  text-decoration: none; /* Remove underline for links */
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.paginationjopy button:hover,
.paginationjopy a:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

.paginationjopy button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive styles for smaller screens */
@media (max-width: 600px) {
  .paginationjopy {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    flex-wrap: wrap; /* Allows wrapping if needed */
    gap: 8px; /* Add spacing between elements */
  }

  .paginationjopy button,
  .paginationjopy a {
    padding: 4px 8px; /* Slightly increase padding for better appearance */
    font-size: 10px; /* Adjust font size for readability */
    border-radius: 4px; /* Keep smaller border radius */
  }
}


/* Default styles (light mode) */
.prediction-text {
  font-size: 9px;
  font-weight: bold;
  margin-top: 2px;
}

.scanned-on-text {
  font-size: 8px;
}

/* Larger screen styles */
@media (min-width: 768px) {
  .prediction-text {
    font-size: 15px;
  }

  .scanned-on-text {
    font-size: 13px;
  }
}








    /* Small devices (minimum width: 640px) */
    @media (min-width: 640px) {
      .md\:text-sm3{
        font-size: 10px; /* 14px */ 
      }
      
    }

    /* Medium devices (minimum width: 768px) */
    @media (min-width: 768px) {
      .md\:text-sm3{
        font-size: 11px; /* 14px */ 
      }
      
    }

    /* Large devices (minimum width: 1024px) */
    @media (min-width: 1024px) {
      .md\:text-sm3{
        font-size: 15px; /* 14px */ 
        font-weight: bold;
      }
      
    }

    /* Extra large devices (minimum width: 1280px) */
    @media (min-width: 1280px) {
    }

    /* 2XL devices (minimum width: 1536px) */
    @media (min-width: 1536px) {
    }










 

  /* Dashboard light theme */
  .anthracnose1 {
    background-color:#8fd89a;
  }
  .blackspot1 {
    background-color:#b7c999;
  }
  .brownspot1 {
    background-color:#d1b1a7;
  }
  .whitespot1 {
    background-color:#a8a9cd;
  }
  .healthy1 {
    background-color:rgb(204, 247, 194);
  }
  .leafblight1 {
    background-color:#b6ded4;
  }
  
   /* Dashboard dark theme */
   .theme-dark .dark\:anthracnose1 {
    background-color:#485d4c;
  }
  .theme-dark .dark\:blackspot1 {
    background-color:#555d48;
  }
  .theme-dark .dark\:brownspot1 {
    background-color:#5d4d48;
  }
  .theme-dark .dark\:whitespot1 {
    background-color:#48495d;
  }
  .theme-dark .dark\:healthy1 {
    background-color:#34573c;
  }
  .theme-dark .dark\:leafblight1 {
    background-color:#4d625d;
  }


  .my-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column for  */
    gap: 1rem; /* Spacing between grid items */
  }
  
  /* Medium screens and above (768px and larger) */
  @media (min-width: 768px) {
    .my-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
  }
  
  /* Extra large screens and above (1280px and larger) */
  @media (min-width: 1280px) {
    .my-grid {
      grid-template-columns: repeat(3, 1fr); /* 4 columns for extra large screens */
    }
  }
  


 /* For detect) */

  .my-griddetect {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column for  */
    gap: 1rem; /* Spacing between grid items */
  }
  
  /* Medium screens and above (768px and larger) */
  @media (min-width: 768px) {
    .my-griddetect {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
  }
  
  /* Extra large screens and above (1280px and larger) */
  @media (min-width: 1280px) {
    .my-griddetect {
      grid-template-columns: repeat(2, 1fr); /* 4 columns for extra large screens */
    }
  }




  .container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px; /* Fixed height */
    padding: 10px; /* Adjust padding to fit elements better */
    background: linear-gradient(135deg, #71ed6d, #2db021);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .folder1 {
    margin-top: 5px; /* Reduce margin to make room */
    position: relative;
    animation: float 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
    max-height: 80px; /* Adjust to fit inside container */
  }
  
  .folder1:hover {
    transform: scale(1.05);
  }
  
  .folder1 .top1 {
    background: linear-gradient(135deg, #ff9a56, #ff6f56);
    width: 60px; /* Reduce width to fit */
    height: 15px; /* Adjust height */
    border-radius: 12px 12px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
  }
  
  .folder1 .bottom1 {
    background: linear-gradient(135deg, #ffe563, #ffc663);
    width: 90px; /* Adjust width */
    height: 55px; /* Adjust height */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0 10px 10px 10px;
    position: relative;
    top: -5px; /* Reduce the gap between top and bottom */
  }
  
  .custom-file-upload {
    font-size: 1em; /* Adjust font size */
    color: #ffffff;
    text-align: center;
    margin-top: 10px; /* Adjust margin to fit inside */
    padding: 8px 18px; /* Adjust padding */
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    width: 190px; /* Adjust width */
    max-width: 100%; /* Ensure it doesn't overflow */
    margin-bottom: 10px;
  }
  
  .custom-file-upload:hover {
    background: rgba(10, 104, 34, 0.705);
  }
  
  #fileInput1 {
    display: none; /* Hide the file input */
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(-10px); /* Reduce float distance */
    }
  
    100% {
      transform: translateY(0px);
    }
  }
  
  



  .container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Adjust padding for fit */
    height: 150px; /* Fixed height */
    background: linear-gradient(135deg, #71ed6d, #2db021);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .camera-icon {
    position: relative;
    animation: float 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
    width: 60px; /* Reduced width */
    height: 60px; /* Adjusted height */
    margin-bottom: 5px; /* Space between camera icon and button */
  }

  .camera-icon:hover {
    transform: scale(1.05);
  }
  
  /* Camera Lens */
  .lens {
    background: radial-gradient(circle, #ffffff 50%, #b3b3b3 80%, #333333);
    width: 40px; /* Adjusted width */
    height: 40px; /* Adjusted height */
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Camera Body */
  .camera-body {
    background: #333;
    width: 90px; /* Adjusted width */
    height: 55px; /* Adjusted height */
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
  

  /* File upload label */
  .custom-file-upload1 {
    font-size: 1em; /* Adjusted font size to fit */
    color: #ffffff;
    text-align: center;
    margin-top: 10px; /* Reduced margin */
    padding: 8px 15px; /* Adjusted padding for fit */
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    width: 190px; /* Adjusted width to fit in container */
    max-width: 100%; /* Ensure it doesn't overflow */
  }

  .custom-file-upload1:hover {
    background: rgba(10, 104, 34, 0.705);
  }
  
  /* Keyframe animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px); /* Adjust float distance */
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Hide the file input */
  #fileInput2 {
    display: none;
  }
  
  
  









  /* From Uiverse.io by adamgiebl */ 
.button12{
  font-size: 18px;
  margin-bottom: 5px;
  display: inline-block;
  outline: 0;
  width: 100%;
  border: 0;
  cursor: pointer;
  will-change: box-shadow,transform;
  background: radial-gradient( 100% 100% at 100% 0%, #7eda75 0%, #45d656 100% );
  box-shadow: 0px 0.01em 0.01em rgb(45 35 66 / 40%), 0px 0.3em 0.7em -0.01em rgb(45 35 66 / 30%), inset 0px -0.01em 0px rgba(62, 111, 58, 0.5);
  padding: 0 2em;
  border-radius: 0.3em;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.465); /* Horizontal offset, vertical offset, blur radius, color */ 
  height: 2.6em;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.button12:hover {
  box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #3ce03f;
  transform: translateY(-0.1em);
}

.button12:active {
  box-shadow: inset 0px 0.1em 0.6em #52e03c;
  transform: translateY(0em);
}

  /* From Uiverse.io by adamgiebl */ 
  .button123{
    font-size: 18px;
    margin-bottom: 5px;
    display: inline-block;
    outline: 0;
    width: 100%;
    border: 0;
    cursor: pointer;
    will-change: box-shadow,transform;
    background: radial-gradient( 100% 100% at 100% 0%, #da7575 0%, #d64545 100% );
    box-shadow: 0px 0.01em 0.01em rgb(45 35 66 / 40%), 0px 0.3em 0.7em -0.01em rgb(45 35 66 / 30%), inset 0px -0.01em 0px rgba(62, 111, 58, 0.5);
    padding: 0 2em;
    border-radius: 0.3em;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.465); /* Horizontal offset, vertical offset, blur radius, color */ 
    height: 2.6em;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
  }
  
  .button123:hover {
    box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #e03c3c;
    transform: translateY(-0.1em);
  }
  
  .button123:active {
    box-shadow: inset 0px 0.1em 0.6em #e03c3c;
    transform: translateY(0em);
  }








  /* Profile Container */
  .profile-container {
    padding: 24px;
    width: 100%;
  }

  /* Profile Content */
  .profile-content {
    text-align: left;
  }

  /* Profile Title */
  .profile-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  /* Cover Image and Profile Picture */
  .cover-profile-container {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .cover-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

  .profile-picture-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
  }

  .profile-picture {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid #e6ffe5;
  }

  /* File Input Style */
  .file-input {
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #bfebbf40;
    border: 2px dashed #42e23d;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1rem;
    color: #2d9729;
    width: 100%;
    margin-top: 80px;
  }

  .file-input:hover {
    background-color: #7da9727b;
  }

  .file-input::-webkit-file-upload-button {
    background-color: #49df41;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .file-input::-webkit-file-upload-button:hover {
    background-color: #2d7b2c;
  }

  /* Button Styles */
  .upload-button {
    padding: 12px;
    background-color: #3bbd2a;
    color: white;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: bold;
  }

  .upload-button:hover {
    background-color: #187810;
  }

  .action-buttons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: left;
    margin-top: 1.5rem;
    gap: 1rem;
    padding-top: 19px;
  }

  .change-password-button,
  .logout-button {
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    color: white;
    width: 100%;
    text-align: center;
    cursor: pointer;
  }

  .change-password-button {
    background-color: #48bb78;
  }

  .change-password-button:hover {
    background-color: #38a169;
  }

  .logout-button {
    background-color: #f56565;
  }

  .logout-button:hover {
    background-color: #e53e3e;
  }

  /* Profile Details */
  .profile-details {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
    padding-top: 15px;
  }

  .profile-item {
    margin-bottom: 0.5rem;
    font-size: 13px;
  }
  .profile-item1 {
    font-size: 13px;
  }

  .profile-label {
    font-weight: 600;
    width: 50px;
    max-width: 50px;
    padding-right: 3px;
  }

  .profile-label1 {
    font-weight: 600;
    width: 50px;
    max-width: 50px;
    padding-right: 36px;
  }

  .profile-label2 {
    font-weight: 600;
    width: 50px;
    max-width: 50px;
    padding-right: 30px;
  }
  
  .labela{
    margin-left: 17px;
  }



  .indicator {
    font-size: 0.8em;
    margin: 0;
    padding: 3px 5px;
    width: 100%;
    border-radius: 3px;
    font-weight: bold;
  }
  
  #password-indicators {
    display: flex;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: center;
    align-items:center ;
    flex-direction: row; /* Change to row for inline layout */
    gap: 10px; /* Add space between indicators */
  }
    
  .valid {
    background-color: #38ff45; /* Light green */
    border: 1px solid #38ff45;
  }
    
  .invalid {
    background-color: #fc4f4f; /* Light red */
    border: 1px solid #f77676;
  }

  #match-indicator{
    font-size: 12px;
    margin: 0px;
  }
  
  .password-container {
    position: relative; /* To position the icon */
  }
  
  .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust as needed */
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer;
  }
  

  /* Position right icon (for password toggle) */
.input-box i.right-icon {
  right: 10px;
}

/* Style for input padding to make space for the icon */
.form-input11 {
  padding-right: 2.5rem; /* Adjust based on icon size */
}

/* Eye icon styling */
.cursor-pointer11 {
  cursor: pointer;
}