﻿html {
    height: 100%;
}

body {
    background: linear-gradient(0deg, #0a3d62, #3c6382);
    height: 100%;
}
/*header sidebar footer */
:root {
    --pp-dark: #0A2342;
    /* dark blue */
    --pp-light: #E6F2FF;
    /* light blue */
    --pp-mid: #3E92CC;
    /* medium blue (accents) */
    --pp-black: #111;
    /* black text */
    --pp-radius: 14px;
}

/* HEADER */
.pp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--pp-dark);
    color: #fff;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.pp-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-menu {
    font-size: 1.5rem;
    cursor: pointer;
}

.pp-logo {
    height: 42px
}

.pp-title {
    margin: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: .3px;
}

/* SIDEBAR */
.pp-sidebar {
    position: fixed;
    top: 0;
    left: -290px;
    width: 280px;
    height: 100%;
    background: var(--pp-light);
    color: var(--pp-black);
    box-shadow: 2px 0 12px rgba(0, 0, 0, .15);
    transition: left .28s ease;
    z-index: 1040;
    overflow-y: auto;
    padding: 14px 14px 24px;
}

    .pp-sidebar.show {
        left: 0;
    }

.pp-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1035;
}

    .pp-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

/* User card */
.pp-user {
    background: #fff;
    border-radius: var(--pp-radius);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    margin-bottom: 10px;
}

.pp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pp-mid), #79baf0);
    color: #fff;
}

.pp-user .pp-name {
    margin: 0;
    font-weight: 700
}

.pp-user .pp-id {
    margin: 0;
    font-size: .8rem;
    color: #666
}

/* Links & toggles */
.pp-nav-link,
.pp-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pp-dark);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    border: 0;
    text-align: left;
    transition: background .2s ease, color .2s ease;
    font-weight: 600;
}

    .pp-nav-link i,
    .pp-nav-toggle i {
        min-width: 20px
    }

    .pp-nav-link:hover,
    .pp-nav-toggle:hover {
        background: #d9ecff;
        color: #05203d
    }

    .pp-nav-link.active {
        background: var(--pp-dark);
        color: #fff;
    }

        .pp-nav-link.active i {
            color: #fff;
        }

/* Submenu */
.pp-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px 9px 38px;
    text-decoration: none;
    color: #163d6a;
    border-radius: 8px;
    font-weight: 500;
}

    .pp-sub a:hover {
        background: #dfefff;
    }

.pp-chev {
    margin-left: auto;
    transition: transform .2s ease;
}

.pp-toggle[aria-expanded="true"] .pp-chev {
    transform: rotate(180deg);
}

/* Footer nav (mobile tab bar) */
.pp-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--pp-dark);
    color: #fff;
    padding: 6px 0;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

    .pp-footer-nav a {
        color: #fff;
        text-decoration: none;
        text-align: center;
        font-size: 12px
    }

        .pp-footer-nav a i {
            display: block;
            font-size: 18px;
            margin-bottom: 2px
        }

        .pp-footer-nav a.active {
            color: #a9d6ff
        }



@media(min-width:992px) {

    /* Optional: keep footer tab bar for mobile only */
    .pp-footer-nav {
        display: none;
    }
}


/*login.css*/
/* Unique classes with 'pp-' prefix */
.pplogin-container {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-login-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.pp-login-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.pp-login-title {
    color: #0a3d62;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pp-label {
    text-align: left;
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0a3d62;
}

.pp-input-group {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

    .pp-input-group i {
        color: #3c6382;
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }

    .pp-input-group input {
        border: none;
        background: transparent;
        outline: none;
        flex: 1;
        font-size: 1rem;
    }

.pp-login-btn {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
}

    .pp-login-btn:hover {
        background: linear-gradient(135deg, #3c6382, #0a3d62);
    }

.pp-footer-text {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 576px) {
    .pp-login-container {
        padding: 1.5rem;
    }

    .pp-login-title {
        font-size: 1.3rem;
    }
}



@media (max-width: 576px) {
    .radio-card {
        padding: 1.5rem;
    }

    .radio-title {
        font-size: 1.3rem;
    }
}

/*0tp*/


.otp-container {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.otp-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.otp-logo {
    width: 80px;
    margin-bottom: 15px;
}

.otp-title {
    color: #0a3d62;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pp-label {
    text-align: left;
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0a3d62;
}

.pp-input-group {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

    .pp-input-group i {
        color: #3c6382;
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }

    .pp-input-group input {
        border: none;
        background: transparent;
        outline: none;
        flex: 1;
        font-size: 1rem;
    }

.otp-btn {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

    .otp-btn:hover {
        background: linear-gradient(135deg, #3c6382, #0a3d62);
    }

.otp-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 576px) {
    .otp-card {
        padding: 1.5rem;
    }

    .otp-title {
        font-size: 1.3rem;
    }
}
/*  
defult.css*/

.ppdefult-page {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.portaldefult-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.portaldefult-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.portaldefult-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-btn {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

    .login-btn:hover {
        background: linear-gradient(135deg, #3c6382, #0a3d62);
    }

@media (max-width: 576px) {
    .portal-title {
        font-size: 1.5rem;
    }

    .portal-description {
        font-size: 0.95rem;
    }

    .login-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}


/*home.css*/
.home_body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.home-container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.home-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0a3d62;
}

.home-intro {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    gap: 0.5rem;
    font-weight: bold;
    color: #0a3d62;
    text-align: center;
}

    .nav-button i {
        font-size: 1.5rem;
    }

    .nav-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        background: #e0ebf6;
    }

@media (max-width: 576px) {
    .home-title {
        font-size: 1.6rem;
    }

    .home-intro {
        font-size: 0.95rem;
    }
}


/*diagnostic.css*/
.profile-diagnostic-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
}

.avatar-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #6c757d;
}

.info-diagnostic-box {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #e1e1e1;
}

/* ====== Status Buttons ====== */
.status-btns-group .btnn {
    font-size: 13px;
    padding: 6px 14px;
    margin: 3px;
    border-radius: 20px;
    color: #fff;
    border: none;
}

.btn-verified {
    background-color: #28a745;
}

.btn-unverified {
    background-color: #6c757d;
}

.btn-fresh {
    background-color: #17a2b8;
}

.btn-pending {
    background-color: #ffc107;
    color: #000;
}

.btn-processing {
    background-color: #007bff;
}

.btn-machine {
    background-color: #6610f2;
}

.btn-rejected {
    background-color: #dc3545;
}

/* ====== Table Styling ====== */
.report-table th {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 14px;
}

.report-table td {
    font-size: 14px;
}

.action-circle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f3f5;
    color: #495057;
    text-decoration: none;
}

/* ====== Custom Radio Buttons for Status ====== */
.status-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #adb5bd;
    outline: none;
    margin-left: 6px;
    cursor: pointer;
    position: relative;
}

    .status-radio:checked::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
    }

.status-verified:checked::before {
    background: #28a745;
}
/* Green */
.status-pending:checked::before {
    background: #ffc107;
}
/* Yellow */
.status-rejected:checked::before {
    background: #dc3545;
}
/* Red */
.status-fresh:checked::before {
    background: #17a2b8;
}
/* Teal */
.status-processing:checked::before {
    background: #007bff;
}
/* Blue */
.status-machine:checked::before {
    background: #6610f2;
}
/* Purple */
.status-unverified:checked::before {
    background: #6c757d;
}
/* Grey */

/* Status Labels */
.status-label {
    font-size: 12px;
    margin-left: 4px;
}

.status-verified-label {
    color: #28a745;
}

.status-pending-label {
    color: #ffc107;
}

.status-rejected-label {
    color: #dc3545;
}

/* ====== Responsive ====== */
@media (max-width: 991.98px) {
    .profile-diagnostic-card .row > div {
        margin-bottom: 10px;
    }

    .status-btns-group {
        flex-wrap: wrap;
        gap: 6px;
    }

        .status-btns-group .btn {
            font-size: 12px;
        }
}

@media (max-width: 575.98px) {
    .profile-diagnostic-card .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left !important;
    }

    .welcome-section {
        font-size: 14px;
    }

    .avatar-box {
        font-size: 26px;
    }
}

.noHover {
    pointer-events: none;
}

.date-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 500px;
}

    .date-filter input {
        padding: 6px 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }

    .date-filter button {
        padding: 6px 16px;
        background: #3b82f6;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
    }

/*    doctor.css*/


.h {
    color: #2b6da3;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
/* Doctor Card */
.doctor-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .doctor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .doctor-card img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid #e9f2fb;
    }

.doctor-info h5 {
    margin: 0;
    color: #0056b3;
    font-weight: 600;
}

.doctor-info p {
    margin: 2px 0;
    color: #6c757d;
}

/*famillymember.css*/


.A {
    text-align: center;
    color: #2b6da3;
    margin-bottom: 30px;
    font-weight: 600;
}

.fmember-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .fmember-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .fmember-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 15px;
        border: 3px solid #e9f2fb;
        object-fit: cover;
    }

    .fmember-card h5 {
        margin: 0;
        font-weight: 600;
        color: #0056b3;
    }

    .fmember-card p {
        margin: 5px 0;
        color: #6c757d;
    }

    .fmember-card small {
        display: block;
        color: #495057;
        margin-top: 3px;
    }


/*    user.css*/

.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .profile-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #e9f2fb;
    }

    .profile-card h3 {
        margin-top: 10px;
        color: #0056b3;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .profile-card p {
        color: #6c757d;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

.profile-info {
    margin-top: 20px;
}

    .profile-info .info-item {
        padding: 10px 0;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.95rem;
    }

.info-item strong {
    color: #333;
    display: inline-block;
    width: 130px;
}

.btn-edit {
    margin-top: 20px;
    width: 100%;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card {
        padding: 15px;
    }

        .profile-card img {
            width: 100px;
            height: 100px;
        }

    .info-item strong {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .profile-card h3 {
        font-size: 1.2rem;
    }

    .profile-card p,
    .info-item {
        font-size: 0.85rem;
    }

    .btn-edit {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/*useredits.css*/

.edit-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .edit-card h3 {
        color: #0056b3;
        font-weight: bold;
        margin-bottom: 25px;
        text-align: center;
    }

.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0056b3;
}

.upload-btn {
    margin-top: 10px;
}

label.form-label {
    display: block;
    text-align: left;
    font-weight: 500;
}

@media (max-width: 768px) {
    .edit-card {
        padding: 20px;
        margin: 20px;
    }

        .edit-card h3 {
            font-size: 20px;
        }

    .profile-pic {
        width: 90px;
        height: 90px;
    }
}

/*notification.css*/
.Ncontainer {
    max-width: 800px;
    margin-top: 30px;
}

.notification-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

    .notification-card:hover {
        transform: scale(1.01);
    }

.badge-status {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 20px;
}

.notification-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 576px) {
    .notification-card {
        padding: 15px;
    }
}


.radio-group {
    display: flex;
    gap: 20px; /* space between buttons */
    margin: 10px 0;
}

    .radio-group label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-family: Arial, sans-serif;
        color: #333;
    }

    /* hide default radio */
    .radio-group input[type="radio"] {
        display: none;
    }

/* custom radio circle */
.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

/* checked state */
.radio-group input[type="radio"]:checked + .custom-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #0078d7; /* blue fill */
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}



.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
    }

.icon-box {
    font-size: 40px;
    margin-bottom: 15px;
}



.home_body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.home-container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.home-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0a3d62;
}

.home-intro {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    gap: 0.5rem;
    font-weight: bold;
    color: #0a3d62;
    text-align: center;
}

    .nav-button i {
        font-size: 1.5rem;
    }

    .nav-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        background: #e0ebf6;
    }

@media (max-width: 576px) {
    .home-title {
        font-size: 1.6rem;
    }

    .home-intro {
        font-size: 0.95rem;
    }
}

.alink {
    text-decoration: none;
    color: #0a3d62;
}

.ipd-header {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.visit-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.table thead {
    background: #007bff;
    color: white;
}

.table tbody tr:hover {
    background: #f8f9fa;
}


.compare-header {
    background: #0d6efd;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.compare-card {
    margin: 15px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

summary {
    cursor: pointer;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;
}

details[open] summary {
    color: #0d6efd;
}

.icons {
    float: right;
}

    .icons i {
        margin-left: 12px;
        cursor: pointer;
        color: #0d6efd;
    }

        .icons i:hover {
            color: #0a58ca;
        }

.report-list {
    padding: 10px 20px;
    border-top: 1px solid #ddd;
}



.slip-container {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #444;
    border-radius: 10px;
    background: #fff;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slip-header {
    text-align: center;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

    .slip-header h2 {
        margin: 0;
        font-size: 22px;
        color: #222;
    }

    .slip-header p {
        margin: 5px 0;
        font-weight: bold;
        color: #555;
    }

.slip-info table {
    width: 100%;
    font-size: 14px;
}

.slip-info td {
    padding: 6px 8px;
}

.slip-tests {
    margin-top: 15px;
}

    .slip-tests table {
        width: 100%;
        border-collapse: collapse;
    }

    .slip-tests th, .slip-tests td {
        border: 1px solid #666;
        padding: 10px;
        font-size: 14px;
        text-align: center;
    }

    .slip-tests th {
        background: #f2f2f2;
        font-weight: bold;
    }

.slip-summary {
    margin-top: 20px;
    font-size: 15px;
    text-align: right;
}

    .slip-summary p {
        margin: 6px 0;
    }

/* Print Styling */
@media print {
    body {
        background: #fff;
    }

    .slip-container {
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .slip-container {
        padding: 15px;
        font-size: 14px;
    }

    .slip-info table, .slip-tests table {
        font-size: 13px;
    }

    .slip-tests th, .slip-tests td {
        padding: 6px;
    }

    .slip-summary {
        font-size: 14px;
    }
}

.support-header {
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

    .support-header h2 {
        font-size: 24px;
        margin: 0;
        font-weight: bold;
    }

.support-details {
    margin-bottom: 20px;
}

    .support-details p {
        font-size: 15px;
        margin: 8px 0;
    }

    .support-details b {
        color: #333;
    }

.support-contact {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

    .support-contact h3 {
        margin-top: 0;
    }

    .support-contact input,
    .support-contact textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }

    .support-contact button {
        background: #007bff;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 15px;
    }

        .support-contact button:hover {
            background: #0056b3;
        }

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 15px;
}

    .whatsapp-btn:hover {
        background: #1ebd58;
    }

    .whatsapp-btn img {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }

@media(max-width:768px) {
    .support-container {
        padding: 15px;
    }

    .support-header h2 {
        font-size: 20px;
    }
}

.bg_color1, .bg_purple {
    background-color: #44206B !important;
    color: white !important;
}

.bg_color2, .bg_orange {
    background-color: #F17D30 !important;
    color: white !important;
}

.bg_color3, .bg_pink {
    background-color: #E051B0 !important;
    color: white !important;
}

.bg_color4, .bg_red_dull {
    background-color: #E8572E !important;
    color: white !important;
}

.bg_color5, .bg_green_dull {
    background-color: #51BCBA !important;
    color: white !important;
}

.bg_color6, .bg_purple_light {
    background-color: #8D73C1 !important;
    color: white !important;
}

.bg_color7, .bg_green_light {
    background-color: #67D872 !important;
    color: black !important;
}

.bg_color8, .bg_cyan {
    background-color: #4BC4FA !important;
    color: black !important;
}

.bg_color9, .bg_yellow {
    background-color: #FACF33 !important;
    color: black !important;
}

.bg_color0, .bg_maroon {
    background-color: #7E2117 !important;
    color: white !important;
}

.bg_red {
    background-color: red !important;
    color: white !important;
}

.bg_green {
    background-color: green !important;
    color: white !important;
}

.bg_blue {
    background-color: blue !important;
    color: white !important;
}

.bg_gray {
    background-color: lightgray !important;
    color: black !important;
}

.green {
    color: green !important;
}

.orange {
    color: orange !important;
}

.red {
    color: red !important;
}
/*End Colors*/
.nav-link {
    color: #FFF !important;
}

    .nav-link.active {
        color: black !important;
    }





.hide {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 99;
    opacity: 0.5;
    filter: alpha(opacity=5);
    -moz-opacity: 0.5;
    min-height: 100%;
    width: 100%;
}

.loading {
    font-size: 10pt;
    border: 5px solid #67CFF5;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: White;
    z-index: 999;
}

.popup {
    box-shadow: 5px 5px 10px #007acc;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: White;
    z-index: 999;
}

#popframe {
    width: 100%;
    height: 100%;
    border: none;
}

#popmsg {
    height: 100px;
    text-align: center;
    display: none;
    font-size: 14pt;
}

    #popmsg table, #popmsg table tr {
        width: 100%;
        height: 100px;
    }

    #popmsg td {
        vertical-align: middle;
        height: 100px;
    }

#expboxclose {
    top: -16px;
    right: -16px;
    position: absolute;
    font-size: 32px;
    border-radius: 12px;
    cursor: pointer;
}