* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    /* Ensure the body takes the full height of the viewport */
    margin: 0;
    /* Remove default margin */
    width: 100%;
    /* Ensure the body takes the full width of the viewport */
}

html {
    scroll-behavior: smooth;
    /* Enable smooth scrolling for anchor links */
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    /* Changed background to white */
    color: #2c3e50;
    /* Darker text color for contrast */
    display: flex;
    /* Use flexbox for the body */
    flex-direction: column;
    /* Stack children vertically */
    /* max-width: 1200px; */
    /* Set a max width for the body */
    margin: 0 auto;
    /* Center the body */
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    text-align: center;
    padding: 0px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* height of the gradient shadow */
    pointer-events: none;
    background: linear-gradient(45deg, #fff, #79cced, #fff, #79cced, #fff);
    background-size: 200% 100%;
    animation: gradientShift 2s linear infinite;
    filter: blur(3px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }

    /* 50% {
        background-position: 100% 50%;
    } */

    100% {
        background-position: 100% 0%;
    }
}

.body-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Allow this container to grow and take available space */
    width: 100%;
    /* Ensure it takes the full width of its parent */
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container,
.footer-container {
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    /* Space between items */
    align-items: center;
    /* Center items vertically */
}

/* Two-row navigation inside .nav-center */
.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;  /* center both rows */
    width: 100%;
}

.nav-firstrow,
.nav-secondrow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* allows better fit on medium screens */
}

/* Make sure li doesn't stretch awkwardly */
.nav-firstrow li,
.nav-secondrow li {
    list-style: none;
}

/* Keep the nav links spaced properly */
.nav-firstrow li a,
.nav-secondrow li a {
    white-space: nowrap;
}

/* -<==>--<==>--<==>- NAV HEADER and SIDEBAR HEADER -<==>--<==>--<==>- */

.profilepicheaderContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: -0.5%;
    margin-right: 2%;
    position: relative;
}

.frameheader-container {
    border: 1px solid #000;
    /* Add a frame around the container */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    /* Adjust padding as needed */
    width: 40px;
    /* Set a fixed width to match the blank-profile-pic: 225*/
    height: 40px;
    /* Set a fixed height to match the blank-profile-pic 225*/
    overflow: hidden;
    /* Hide any content that overflows the fixed size */
    border-radius: 50%;
}

.frameheader-container img {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    height: 40px;
    object-fit: cover;
    /* Crop and cover the circular frame */
}

/* -<==>--<==>--<==>- NAV HEADER and SIDEBAR HEADER -<==>--<==>--<==>- */

.custom-nav .nav-center {
    margin-top: 1%;
}

.custom-nav li {
    display: inline;
    margin: 0 10px;
    padding: 0px;
    position: relative;
    /* For dropdown positioning */
}

.custom-nav li a {
    color: black;
    /* Black text for navigation links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-nav li a:hover {
    color: #79cced;
}

.custom-nav .button_logInsignUp {
    /* position LogIn/SignUp button */
    margin-top: 1%;
    margin-left: auto;
    margin-right: 2%;
    position: relative;
}

.custom-nav .dropdown-content {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    /* Position it absolutely */
    top: 100%;
    /* Position it below the button */
    left: 0;
    /* Align it to the left of the button */
    background-color: white;
    text-align: left;
    max-width: 160px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.button_logInsignUp:hover .custom-nav .dropdown-content {
    display: block;
    /* Show dropdown on hover */
}

.custom-nav .dropdown-content a {
    color: black;
    padding: 5px 6px;
    text-decoration: none;
    display: block;
}

.custom-nav .dropdown-content a:hover {
    background-color: #f1f1f1;
    /* Highlight on hover */
}

section#intro {
    text-align: center;
}

section#intro h1 {
    color: #79cced;
}

section#intro p {
    color: #2c3e50;
}

section {
    padding: 10px;
    margin: 10px 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.class_h2 {
    text-align: left;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
}

h3 {
    color: #2c3e50;
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
}

.about-text p,
.mission-text p,
.activities-text p,
.services-text p,
.operating-text p,
.marketing-text p,
.contact-Text p {
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.index_text_ul {
    list-style-type: none;
    padding-left: 10px;
    margin: 10px 0px;
}

.nav-text {
    margin: 2px 0px;
}

.index_text_ul li {
    margin-bottom: 5px;
    padding-left: 15px;
}

form {
    display: flex;
    flex-direction: column;
}

.contact-Text label {
    margin-top: 5px;
}

.contact-Text input,
.contact-Text textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-Text button {
    margin-top: 10px;
    padding: 10px;
    background-color: #FFD700;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-Text button:hover {
    background-color: #FFC107;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on larger screens */
    gap: 20px; /* Space between items */
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
}

.contact-item i {
    color: #79cced; /* Match your theme color */
    font-size: 18px;
}

.contact-item a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #79cced;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.intro-container,
.about-container,
.mission-container,
.activities-container,
.services-container,
.operating-container,
.marketing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px 20px;
}

.intro-image img,
.about-image img,
.mission-image img,
.activities-image img,
.services-image img,
.operating-image img,
.marketing-image img {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.introText-container,
.aboutText-container,
.missionText-container,
.activitiesText-container,
.servicesText-container,
.operatingText-container,
.marketingText-container {
    display: flex;
    flex-direction: column;
    width: 600px;
    padding: 20px;
}

.introImage-container,
.aboutImage-container,
.missionImage-container,
.activitiesImage-container,
.servicesImage-container,
.operatingImage-container,
.marketingImage-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 600px;
    padding: 20px;
}


@media (max-width: 768px) {

    .intro-image img,
    .about-image img,
    .mission-image img,
    .activities-image img,
    .services-image img,
    .operating-image img,
    .marketing-image img {
        max-width: 400px;
        max-height: 600px;
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .intro-container,
    .about-container,
    .mission-container,
    .activities-container,
    .services-container,
    .operating-container,
    .marketing-container {
        flex-wrap: wrap;
        padding: 0px;
    }

    .introText-container {
        order: 1;
        text-align: center;
        height: auto;
        width: 100%;

    }

    .aboutText-container,
    .missionText-container,
    .activitiesText-container,
    .servicesText-container,
    .operatingText-container,
    .marketingText-container {
        order: 1;
        text-align: left;
        height: auto;
        width: 100%;
    }

    .introImage-container,
    .aboutImage-container,
    .missionImage-container,
    .activitiesImage-container,
    .servicesImage-container,
    .operatingImage-container,
    .marketingImage-container {
        order: 2;
        margin-top: 10px;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
    }
    
    .contact-list {
        grid-template-columns: 1fr; /* Single column */
        gap: 10px;
    }
}

.toggle-button {
    cursor: pointer;
    background-color: #5ec4ec;
    /* Darker background for a sleek look */
    color: #ecf0f1;
    /* Lighter text color for contrast */
    width: 15px;
    /* Fixed width for the toggle */
    height: 100px;
    /* Adjust height for a taller button */
    border-top-right-radius: 50px;
    /* Rounded corner at the upper right */
    border-bottom-right-radius: 50px;
    /* Rounded corner at the bottom right */
    position: fixed;
    /* Positioning relative to the sidebar */
    padding-top: 37px;
    top: 40%;
    transform: translateY(-50%);
    display: none;
    /* Initially hidden */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow for depth */
}

.sidebar h2 {
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar.active {
    transform: translateX(0);
    /* Show the sidebar when active */
}

.toggle-button.active {
    transform: translateX(0);
    /* Auto hide toggle if the sidebar active */
}

/* Media queries for responsiveness */
@media (max-width: 800px) {

    .body-container {
        width: 100%;
        /* Ensure it takes the full width on smaller screens */
    }

    .body_logInOut_SignUp_container {
        width: 100%;
        /* Ensure it takes the full width on smaller screens */
        max-width: 100%;
        /* Remove max-width restriction on smaller screens */
    }

    .custom-nav {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .custom-nav li a {
        color: white;
        /* Black text for navigation links */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .custom-nav li a:hover {
        color: black;
        /* 79cced */
    }

    .custom-nav .dropdown-content a:hover {
        color: #79cced;
        /* 79cced */
    }

    .sidebar {
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack children vertically */
        /* justify-content: space-between; */
        width: 220px;
        background-color: #5ec4ec;
        padding: 20px;
        height: 100%;
        position: fixed;
        /* Set sidebar to absolute */
        top: 0;
        /* Align to the top */
        left: 0;
        /* Align to the left */
        z-index: 10;
        /* Ensure sidebar is above main content */
        overflow: auto;
        /* Prevent scrollbars on the body */
    }
    
    .popupMessage {
        display: none;
        position: absolute;
        /* top: 150px; */
        left: 20px;
        width: 100px;
        font-size: 12px;
        background-color: rgb(250, 239, 248);;
        /* #5ec4ec */
        /*d5d7e4 5ec4ec 87d0ec*/
        /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
        box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.35);
        border-radius: 6px;
        z-index: 1;
        opacity: 1; /* Initially fully visible */
        transition: opacity 0.25s ease-in-out; /* Smooth transition for opacity */
    }
    .popupMessage::before {
        content: '';
        position: absolute;
        left: -9px; /* Position the triangle above the bubble */
        bottom: 5px; /* Position it near the right corner */
        width: 0;
        height: 0;
        border-top: 0.5px solid transparent;
        border-bottom: 5px solid transparent;
        border-right: 10px solid rgb(250, 239, 248); /* Matches the background color of the bubble */
    }

    .sidebar::-webkit-scrollbar {
        width: 0;
    }

    .nav-text {
        display: flex;
        flex-direction: column;
        /* Stack items vertically */
    }

    .profilepicheaderContainer {
        order: 1;
        padding: 10%;
    }

    .frameheader-container {
        width: 125px;
        /* Set a fixed width to match the blank-profile-pic: 225*/
        height: 125px;
        /* Set a fixed height to match the blank-profile-pic 225*/
    }

    .frameheader-container img {
        width: 125px;
        height: 125px;
    }

    .underlinebarProfilePic {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 5%;
    }

    .underlineBar {
        position: relative;
        width: 170px;
        height: 2px;
        background: #dfddddbd;
        -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
    }

    .underlineBar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, #fff, #79cced, #fff, #79cced, #fff);
        animation: animate 5s linear infinite;
        background-size: 200% 100%;
        filter: blur(2px);
    }

    .underlineBar::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, #fff, #79cced, #fff, #79cced, #fff);
        animation: animate 5s linear infinite;
        background-size: 200% 100%;
        filter: blur(2px);
    }

    @keyframes animate {
        0% {
            background-position: 0%;
        }

        100% {
            background-position: 200%;
        }
    }

    /* Ensure the two rows inside nav-center stack properly on mobile */
    .nav-center {
        order: 3;
        width: 100%;
        align-items: stretch; /* let rows stretch full width */
    }

    .nav-firstrow,
    .nav-secondrow {
        display: flex;
        flex-direction: column;   /* stack links vertically */
        align-items: stretch;     /* make each link fill width */
        justify-content: flex-start;
    }

    .nav-firstrow li,
    .nav-secondrow li {
        display: block;           /* one item per row */
    }

    .nav-firstrow li a,
    .nav-secondrow li a {
        display: block;
        white-space: nowrap;      /* keep labels on one line */
        font-size: 16px;   /* ← CHANGE TO YOUR PREFERRED SIZE */
        font-weight: 500;  /* Optional: cleaner look */

    }


    /* .nav-center { */
        /* order: 3; */
        /* display: flex; */
        /* flex-direction: column; */
        /* Stack items vertically */
    /* } */

    .button_logInsignUp {
        order: 4;

        font-size: 16px;   /* ← CHANGE TO YOUR PREFERRED SIZE */
        font-weight: 500;  /* Optional: cleaner look */

    }

    .custom-nav .button_logInsignUp {
        margin-top: 10px;
        /* Add some space above the LogIn/SignUp button */
        margin-left: auto;
        margin-right: auto;
        position: relative;
        /* For dropdown positioning */
    }

    .custom-nav .dropdown-content {
        display: none;
        /* Hide dropdown by default */
        position: absolute;
        /* Position it absolutely */
        top: 100%;
        /* Position it below the button */
        left: 0;
        /* Align it to the left of the button */
        background-color: white;
        text-align: left;
        max-width: 160px;
        border-radius: 5px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .button_logInsignUp:hover .custom-nav .dropdown-content {
        display: block;
        /* Show dropdown on hover */
    }

    .toggle-button {
        display: block;
        /* Show the button on small screens */
        transform: translateX(0px);
        /* hide the toggle when sidebar is inactive */
        transition: transform 0.3s ease-in-out;
    }

    .toggle-button.active {
        transform: translateX(220px);
        /* Show the toggle when sidebar's active */
        transition: transform 0.3s ease-in-out;
    }

    .sidebar {
        transform: translateX(-220px);
        transition: transform 0.3s ease-in-out;
        /* Hide the sidebar */
    }

    .sidebar.active {
        transform: translateX(0);
        transition: transform 0.3s ease-in-out;
        /* Show the sidebar */
    }

}

/* -<==>--<==>--<==>--<==>--<==>--<==>--<==>--<==>- */
/* -<==>--<==>-  LOG IN OUT & SIGN UP  -<==>--<==>- */
/* -<==>--<==>--<==>--<==>--<==>--<==>--<==>--<==>- */

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent background */
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's on top of everything */
}

#loading-box {
    background-color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    /* Light border */
    border-top: 8px solid #3498db;
    /* Blue color */
    border-radius: 50%;
    width: 50px;
    /* Size of the spinner */
    height: 50px;
    /* Size of the spinner */
    animation: spin 1s linear infinite;
    /* Animation properties */
    margin: 0 auto;
    /* Center the spinner */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading-message {
    margin-top: 10px;
    /* Space between spinner and message */
    font-size: 16px;
}

/* Add these styles to your style.css file */
#notification-container,
#notificationLog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's on top of everything */
}

#notification-box,
#notificationLog-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#notification-message,
#notificationLog-message {
    margin-bottom: 10px;
    font-size: 16px;
}

#close-notification,
#close-notificationLog {
    background-color: #5cb85c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#close-notification:hover,
#close-notificationLog:hover {
    background-color: #4cae4c;
}

#otpVerification-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100; /* above other popups */
}

#otpVerification-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 320px;
  width: 90%;
}

#otpVerification-box h3 {
  margin-bottom: 10px;
}

#otpVerification-box input {
  width: 80%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#otpVerification-box button {
  background-color: #5cb85c;
  color: white;
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#otpVerification-box button:hover {
  background-color: #4cae4c;
}

.body_logInOut_SignUp_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 92.5vh; */
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.logSign_section {
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.9);
    /* Light background for sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Shadow effect for sections */
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    /* adjust width */
}

.authenticationForm {
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 400px;
    /* adjust width */
}

.practitionerFeild {
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 1050px;
    /* adjust width */
}

.fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-field {
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}

.input-field label {
    font-size: 10px;
    font-weight: 500;
    color: #2e2e2e;
}

.input-field input,
.input-field select {
    outline: none;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 8px 15px;
    height: 32px;
    margin: 8px 0;
}

.input-field input:focus,
.input-field select:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

.input-field select,
.input-field input[type="date"] {
    color: #707070;
}

.input-field input[type="date"]:valid {
    color: #333;
}


/*-<==>--<==>--<==>- BUTTON SLIDER PROFESSION SELECT AND EMPLOYEE NUMBER -<==>--<==>--<==>-*/
.sliderLabel {
    font-size: 10px;
}

.slider-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.slider-container label {
    font-size: 12px;
    margin-right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    /*Size of Oval*/
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b8cd7;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
    opacity: 0.7;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #ffffff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #81c1f5;
    /* #2196F3 */
}

input:focus+.slider {
    box-shadow: 0 0 1px #81c1f5;
    /* #2196F3 */
}

input:checked+.slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider_profcert {
    background-color: #349ff6;
    /* Example background color for slider_profcert */
}

.slider_currentcompany {
    background-color: #349ff6;
    /* Example background color for slider_profcert */
}

.slider_wecareid {
    background-color: #349ff6;
    /* Example background color for slider_profcert */
}

/*-<==>--<==>--<==>- BUTTON SLIDER PROFESSION SELECT AND EMPLOYEE NUMBER -<==>--<==>--<==>-*/

/*-<==>--<==>--<==>- Profile Pic Form -<==>--<==>--<==>-*/

.profilepicContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.button-container {
    align-items: center;
    justify-content: center;
}

.captureBtn,
.retakeBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    max-width: 150px;
    /*width box*/
    /* width: 150px; */
    border: none;
    outline: none;
    color: #080505;
    border-radius: 5px;
    margin: 5px 0;
    background-color: #87d0ec;
    transition: all 0.3s linear;
    cursor: pointer;
}

.captureBtn.disabled {
    pointer-events: none;
    opacity: 0.5;
    /* You can adjust the opacity as needed */
}

.retakeBtn.disabled {
    pointer-events: none;
    opacity: 0.5;
    /* You can adjust the opacity as needed */
}

.frame-container {
    border: 5px solid #000;
    /* Add a frame around the container */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    /* Adjust padding as needed */
    width: 225px;
    /* Set a fixed width to match the blank-profile-pic: 225*/
    height: 225px;
    /* Set a fixed height to match the blank-profile-pic 225*/
    overflow: hidden;
    /* Hide any content that overflows the fixed size */
    border-radius: 50%;
}

.frame-container video,
.frame-container img {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* Crop and cover the circular frame */
}

#video {
    display: none;
    /* Hide the video initially */
    max-width: 100%;
    /* height: 300px; */
    transform: scaleX(-1);
}

#profile-pic,
#blank-profile-pic {
    display: none;
    /* Hide profile pics initially */
}

#canvas {
    display: none;
    border: 5px solid #000;
    /* Add a frame to the canvas */
}

#capture-button {
    margin-top: 10px;
}

/*-<==>--<==>--<==>- Profile Pic Form -<==>--<==>--<==>-*/

/*-<==>--<==>--<==>--<==>--<==>- EXCEL TABLE -<==>--<==>--<==>--<==>--<==>-*/

table {
    border-collapse: collapse;
    margin-top: 20px;
}

table,
th,
td {
    border: 1px solid #bdc3c7;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #5ec4ec;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.main-excel {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
}

.excel-field {
    max-width: 1045px;
}

.excelTABLE {
    width: 100%;
    overflow: auto;
}

/* WebKit-based browsers (Chrome, Safari) */
/* .excelTABLE::-webkit-scrollbar {
    width: 0;
} */

th.excel-header {
    position: relative;
    /* Position relative for absolute positioning of arrows */
    padding-right: 30px;
    /* Add padding to the right for spacing */
}

.sort-arrow {
    position: absolute;
    /* Position absolute for diamond alignment */
    right: 10px;
    /* Align to the right */
    font-size: 1.2em;
    /* Increase size for better visibility */
    color: lightgrey;
    /* Default color for arrows */
    transition: color 0.3s;
    /* Smooth transition for color change */
}

.sort-arrow-up {
    top: 3px;
    /* Position the up arrow */
}

.sort-arrow-down {
    top: 13px;
    /* Position the down arrow below the up arrow */
}

th.excel-header.sorted-asc .sort-arrow-up {
    color: white;
    /* Color for the up arrow when sorted ascending */
}

th.excel-header.sorted-desc .sort-arrow-down {
    color: white;
    /* Color for the down arrow when sorted descending */
}

/*-<==>--<==>--<==>--<==>--<==>- EXCEL TABLE -<==>--<==>--<==>--<==>--<==>-*/

.logsignForm_h2 {
    text-align: center;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #5cb85c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #4cae4c;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#profile {
    text-align: center;
}

.logout_CSS {
    margin-top: 20px;
    /* Adjust the value as needed for spacing */
}

/* Responsive Design */
@media (max-width: 600px) {
    .input-field {
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 500px) {
    .input-field {
        width: 100%;
    }
}

/* -<==>--<==>--<==>--<==>--<==>--<==>--<==>--<==>- */
/* -<==>--<==>-  LOG IN OUT & SIGN UP  -<==>--<==>- */
/* -<==>--<==>--<==>--<==>--<==>--<==>--<==>--<==>- */