        .error {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-size: medium;
            text-transform: capitalize;
            color: #e74c3c;
            text-align: center;
            margin-top: 10px;
        }

        .error-summary {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: #e74c3c;
            text-align: center;
            margin: auto;
            /* margin-top: 10px; */
            border: 2px solid #e74c3c;
            padding: 10px;
            border-radius: 8px;
        }

        .success {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: green;
            text-align: center;
            margin-top: 10px;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            /* semi-transparent black */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            /* on top of everything */
        }

        .popup-content {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .popup-content h1 {
            margin-bottom: 15px;
        }

        .popup-content p {
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        p {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

        h1 {
            font-family: 'Poppins Semi Bold', sans-serif;
            /* font-weight: 600; */
            color: #001514;
            text-align: center;
            margin-top: 20px;
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            margin-top: 80px;
        }

        h2 {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: #666;
            text-align: center;
            margin-top: 20px;
            font-size: 20px;
            font-style: normal;
            font-weight: 650;
            margin-top: 80px;
        }

        p {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

        a:link {
            text-decoration: none;
        }

        a:visited {
            text-decoration: none;
        }

        /* Reset some default spacing */
        body,
        ul {
            margin: 0;
            padding: 0;
        }

        /* Navbar styling */
        .navbar {
            background-color: #ffffff;
            border-bottom: 2px solid #e0e0e0;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Flex container for nav */
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: auto;
        }

        /* Logo */
        .nav-logo img {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .nav-logo img:hover {
            transform: scale(1.05);
        }

        /* Links container */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        /* Link styles */
        .nav-links a {
            font-family: 'Poppins Semi Bold', sans-serif;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.3s ease;
            padding: 10px 5px;
            display: block;
        }

        /* Hover effect */
        .nav-links,
        .card-center a:hover {
            color: #FFBF23;
        }

        /* Dropdown container */
        /* Dropdown container (already in navbar) */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        /* Toggle link */
        .dropdown-toggle {
            cursor: pointer;
            padding: 10px;
            font-weight: bold;
            color: #333;
            transition: color 0.3s ease;
        }

        .dropdown-toggle:hover {
            color: #FFBF23;
        }

        /* Dropdown menu */
        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            min-width: 180px;
            z-index: 1001;
            padding: 10px 0;
            animation: fadeIn 0.2s ease-in-out;
        }

        /* Dropdown items */
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: #333;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Hover effect */
        .dropdown-content a:hover {
            background-color: #f9f9f9;
            color: #FFBF23;
            cursor: pointer;
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 20px;
            background-color: #f8f8f8;
            font-size: 14px;
            color: #666;
            border-top: 1px solid #ddd;
            margin-top: 40px;
        }

        /* Responsive nav (mobile support) */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-links {
                flex-direction: column;
                gap: 15px;
                margin-top: 10px;
            }

            .nav-logo img {
                height: 50px;
                max-width: 100%;
            }

            /* Input field styles */
            .form-group input {
                font-family: 'Poppins Semi Bold', sans-serif;
                width: 250px;
                outline: none;
                border: none;
                padding: 15px;
                border-radius: 6px;
                font-size: 16px;
                background-color: #ebebeb;
                color: #000;
            }

            .form-group input:focus {
                border-color: #FFBF23;
                outline: none;
            }
        }

        .label-wrapper {
            margin: auto;
        }

        .form-group {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .inputField-label {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 500;
            font-size: 24px;
            width: auto;
            color: #333;
            display: block;
            margin-bottom: 2px;
            text-align: left;
            color: #001514;
        }

        .inputField {
            font-family: 'Poppins Semi Bold', sans-serif;
            width: 250px;
            outline: none;
            border: none;
            padding: 15px;
            border-radius: 6px;
            font-size: 16px;
            background-color: #ebebeb;
            color: #000;
        }

        .inputField_error {
            font-family: 'Poppins Semi Bold', sans-serif;
            width: 250px;
            border: 1px solid #e74c3c;
            padding: 15px;
            border-radius: 6px;
            font-size: 16px;
            background-color: #ebebeb;
            color: #000;
        }

        .selectField {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            width: 250px;
            padding: 12px 15px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            outline: none;
            background-color: #f5f5f5;
            color: #000;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .selectField_error {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            width: 250px;
            padding: 12px 15px;
            font-size: 16px;
            border: 1px solid #e74c3c;
            border-radius: 6px;
            outline: none;
            background-color: #f5f5f5;
            color: #000;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .textareaField {
            font-family: 'Poppins Semi Bold', sans-serif;
            width: 250px;
            height: 150px;
            padding: 12px 20px;
            box-sizing: border-box;
            border-radius: 6px;
            font-size: 16px;
            background-color: #ebebeb;
            color: #000;
            resize: none;
        }

        .textareaField_error {
            font-family: 'Poppins Semi Bold', sans-serif;
            width: 250px;
            height: 150px;
            padding: 12px 20px;
            box-sizing: border-box;
            border-radius: 6px;
            font-size: 16px;
            border: 1px solid #e74c3c;
            background-color: #ebebeb;
            color: #000;
            resize: none;
        }

        /* -------------- Vidos --------------------------------- */
        .video-wrapper {
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 80%;
            max-width: 600px;
            max-height: 60vh;
            overflow: hidden;
            position: relative;
            background: black;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .video-wrapper video,
        .video-wrapper iframe {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }


        /* -------------- End vidos --------------------------------- */

        /* -------------- PIN input------------------------------ */

        .pin-container {
            text-align: center;
            margin-top: 50px;
            font-family: 'Arial', sans-serif;
        }

        .pin-inputs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .pin-box {
            width: 40px;
            height: 50px;
            font-size: 24px;
            text-align: center;
            border: 2px solid #ccc;
            border-radius: 8px;
            transition: border-color 0.2s ease-in-out;
        }

        .pin-box_error {
            width: 40px;
            height: 50px;
            font-size: 24px;
            text-align: center;
            border: 2px solid #e74c3c;
            border-radius: 8px;
            transition: border-color 0.2s ease-in-out;
        }

        .pin-box:focus {
            border-color: #FFBF23;
            outline: none;
        }

        /* -------------- END------------------------------ */

        .inputField:focus,
        .inputField:active,
        .inputField:hover,
        .inputField_error:focus,
        .inputField_error:active,
        .inputField_error:hover,
        .selectField:focus,
        .textareaField:focus,
        .textareaField:active,
        .textareaField:hover,
        .textareaField_error:focus,
        .textareaField_error:active,
        .textareaField_error:hover {
            border-color: #FFBF23;
            box-shadow: 0 0 8px rgba(255, 191, 35, 0.5);
        }

        .selectField_error {
            border: 1px solid #e74c3c;
            background-color: #fbeaea;
        }


        /* Button styling */
        .btn {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 400;
            font-size: 1.1875rem;
            line-height: 1.3157894737;
            color: #ffffff;
            background-color: #FFBF23;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn_endCall {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 400;
            font-size: 1.1875rem;
            line-height: 1.3157894737;
            color: #ffffff;
            background-color: #ee0909;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }


        .btn-secondary {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 200;
            font-size: 1.1875rem;
            line-height: 1.3157894737;
            color: #ffffff;
            background-color: #222;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: #333;
        }

        .btn-secondary {
            margin: 0 auto;
        }

        /* Alternatives Section */
        .alternatives-container {
            min-height: 33vh;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            padding: 10vh 15vw;
            gap: 50px;
            background-color: #ededed;
        }

        .alternatives-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .responsive-image {
            max-width: 150%;
            max-height: 300px;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 12px;
            object-fit: cover;
        }

        .alternatives-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Headings */
        .alternatives-content h1 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #001b1f;
        }

        .alternatives-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .alternatives-container {
                flex-direction: column;
                padding: 5vh 5vw;
                gap: 30px;
                text-align: center;
            }

            .alternatives-content {
                align-items: center;
            }
        }

        /* Style breadcrumb */
        ul.breadcrumb {
            font-family: 'Poppins Semi Bold', sans-serif;
            padding: 10px 16px;
            list-style: none;
            margin-bottom: 10px;
            /* background-color: #eee; */
        }

        /* Display list items side by side */
        ul.breadcrumb li {
            font-family: 'Poppins Semi Bold', sans-serif;
            display: inline;
            font-size: 18px;
        }

        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb li+li:before {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 600;
            padding: 8px;
            color: black;
            content: "/\00a0";
        }

        /* Add a color to all links inside the list */
        ul.breadcrumb li a {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-weight: 600;
            color: #FFBF23;
            text-decoration: none;
        }

        /* Add a color on mouse-over */
        ul.breadcrumb li a:hover {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: #FFBF23;
            text-decoration: underline;
        }

        /* QR code page */
        .card-center {
            margin: 40px auto;
            width: 50%;
            padding: 20px;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .card-center img {
            display: block;
            margin: 0 auto;
            width: auto;
            padding: 10px;
        }

        /* super admin */
        /* Link styles */
        .card-center a {
            font-family: 'Poppins Semi Bold', sans-serif;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: large;
            transition: color 0.3s ease;
            padding: 10px 5px;
            display: block;
        }

        .card-center ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .card-center ul li {
            float: left;
        }

        /* Profile pages */
        .container {
            display: flex;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .card {
            margin: auto;
            background-color: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            flex: 1;
            min-width: 280px;
        }

        .profile-card {
            max-width: 300px;
            text-align: center;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .role {
            color: #666;
            margin-bottom: 10px;
        }

        .info-card {
            margin: auto;
            margin-bottom: 30px;
            margin-left: 20px;
            margin-right: 20px;
            flex: 2;
        }

        .info-card h3 {
            font-family: 'Poppins Semi Bold', sans-serif;
            color: gray;
            text-align: center;
            margin-top: 80px;
            margin-bottom: 20px;
            font-size: 20px;
            font-style: normal;
            font-weight: 650;
        }

        .info-block {
            font-family: 'Poppins Semi Bold', sans-serif;
            margin-bottom: 16px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .info-text {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .label {
            flex: 0 0 120px;
            font-weight: bold;
            color: #555;
            font-size: 16px;
            text-align: left;
            margin: 0;
        }

        .value {
            flex: 1;
            text-align: center;
            margin: 0;
        }

        /* Action row */
        .info-block.with-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .info-block.with-action .info-text {
            flex: 1;
        }

        .info-block.with-action .info-action {
            flex-shrink: 0;
            text-align: right;
        }

        /* Clean small button styling */
        .btn-link {
            font-family: 'Poppins Semi Bold', sans-serif;
            font-size: 13px;
            color: #FFBF23;
            background: none;
            border: none;
            text-decoration: underline;
            padding: 0;
            margin-top: 4px;
            display: inline-block;
            cursor: pointer;
        }

        .btn-link:hover {
            color: #FFBF23;
        }

        /* Slightly bolder compact button (optional) */
        .btn-small {
            font-size: 16px;
            padding: 2px 6px;
            border-radius: 4px;
            background-color: #FFBF23;
            color: #ffffff;
            border: 1px solid #FFBF23;
        }

        .btn-small:hover {
            background-color: #FFBF23;
            color: #ffffff;
        }

        /* Responsive layout */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
                padding: 0 16px;
            }

            .card {
                width: 100%;
                max-width: 500px;
            }

            .info-card h3 {
                margin-top: 40px;
            }
        }

        /* Table */
    .table-container {
  width: 100%;
  overflow-x: auto; 
}

.styled-table {
  border-collapse: collapse;
  margin: 20px auto;
  font-family: 'Poppins Semi Bold', sans-serif;
  font-size: large;
  width: 100%; 
  max-width: 900px; 
  min-width: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
  background-color: #FFBF23;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
  white-space: nowrap; /* Prevents text from breaking oddly */
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #FFBF23;
}

.styled-table tbody tr.active-row {
  font-weight: bold;
  color: #FFBF23;
}

/* Responsive stacking layout on small screens */
@media screen and (max-width: 600px) {
  .styled-table,
  .styled-table thead,
  .styled-table tbody,
  .styled-table th,
  .styled-table td,
  .styled-table tr {
    display: block;
    width: 100%;
  }

  .styled-table thead {
    display: none; /* Hide header row */
  }

  .styled-table tr {
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px;
    background: #fff;
  }

  .styled-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .styled-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    text-align: left;
    color: #555;
  }

  .styled-table tbody tr:last-of-type {
    border-bottom: none;
  }
}


        /* page number */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            font-family: Arial, sans-serif;
            gap: 6px;
        }

        .pagination a,
        .pagination strong {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 2px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none;
            color: #FFBF23;
            font-size: 14px;
            transition: background-color 0.2s, color 0.2s;
        }

        .pagination a:hover {
            background-color: #FFBF23;
            color: white;
        }

        .pagination strong {
            background-color: #FFBF23;
            color: white;
            border-color: #FFBF23;
        }

        /* Remote call room  */
        .video-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    height: 100vh; /* full height */
    box-sizing: border-box;
    padding: 20px;
}

/* Big remote video */
.remote-video {
    flex: 2; /* take more space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.remote-video video {
    width: 100%;
    max-width: 900px; /* bigger screen */
    height: auto;
    border-radius: 12px;
    border: 2px solid #ccc;
    background: black;
}

/* Small local video (thumbnail) */
.local-video {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 200px;
    height: 120px;
    border: 2px solid white;
    border-radius: 8px;
    overflow: hidden;
    background: black;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.local-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Note on the left */
.note-panel{
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: auto;
    max-width: 400px;
    overflow: hidden; /* prevent double scrollbars */
    margin-right: 20px;
}
/* Chat on the right */
.chat-panel {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    height: auto;
    max-width: 400px;
    overflow: hidden; /* prevent double scrollbars */
}

/* Messages take remaining space */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* Input box fixed at bottom */
.input_box {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}

.input_box input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input_box button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: #FFBF23;
    color: white;
    cursor: pointer;
}
.input_box button:hover {
    background: #FFBF23;
}
/* Controls container */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
 background-color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}