
.durationClass {
    border: none;
    font-family: fantasy;
    font-size: 24px;
    letter-spacing: 5px;
    box-shadow: 0px 0px 11px -1px;
    text-align: center;
}


.classClinic {
    min-height: 75px !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    color: white;
    text-align: center;
    display:flex;
    border-radius:24px;
    z-index:10 !important;
}

.classFree {
    background-color: #eac2c3;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 3px 3px 13px 6px gray;
    transition: background-color 5s linear;
}



.classBusy {
    background-color: red;
    font-size: 20px;
    font-weight: bold;
    opacity: 0.8;
    transition: background-color 5s linear;
}


.parentRow {
    place-content: center;
}

.childRow {
    box-shadow: 6px 6px 7px 0px var(--site-light-pink);
    width: 100%;
    background-color: #163c7af5;
    align-items: center;
    border-radius: 20px;
}

.childCol {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.childImg {
    max-width: 100%
}

[dir="ltr"] .fieldLabel {
    font-family: "Inter";
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color:black !important;
}

[dir="rtl"] .fieldLabel {
    font-family: "Inter";
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: right;
    direction: rtl !important;
    justify-content: flex-start;
    display: flex;
    color:black !important;
/*    margin-right: 85px;*/
}

.fieldInput {
    background: white !important;
    /* border-radius: 12px !important; */
    font-size: 16px !important;
    color: black !important;
    border-color: black !important;
}

.my-checkBox
{
    font-size:20px !important;
}

.picCircle {
    background-size: contain;
    /*	border: 1px solid var(--darkGreen);
	border-radius: 50%;*/
    margin-top: 5px;
    display: inline-flex;
    background-repeat: no-repeat;
    height: 256px;
    width: 256px;
    padding: 0 10px;
    background-image: url('/siteimages/uploadImage.svg')
}

.myEditStyle
{
    font-size:20px;
    color:var(--site-light-pink);
}

.SideBarNotification {
    color: white;
    background-color: red;
    border-radius: 40%;
    padding: 5px;
    border-style: none;
    display:none;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*global section*/
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #00b4d8;
}

    a:hover {
        text-decoration: underline;
    }
/*Consistent Button and Input Styles*/
/* Generic button style */
.generic-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00b4d8;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .generic-button:hover {
        background-color: #0096c6;
    }
/* Generic input field style */
.generic-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #00b4d8;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
}

    .generic-input.error {
        border-color: red;
    }

.error-message {
    background-color: #ffcccc;
    color: red;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none; /* Initially hidden */
}
/*Login Page Styles*/
/* Right section (background image) */
.right-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('/Icons_Transcation/Icons/LoginPhoto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

    .right-section h1 {
        font-size: 3rem;
        color: white;
        margin-bottom: 20px;
    }

    .right-section h2 {
        font-size: 2rem;
        color: white;
    }
/*Signup Page Styles*/
/* Signup page container */
.signup-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .signup-container h1 {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
    }

.progress-bar {
    width: 100%;
    height: auto;
    background-color: #ddd;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background-color: #00b4d8;
    width: 0%; /* Initial progress */
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.upload-box {
    border: 2px dashed #00b4d8;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}

    .upload-box p {
        margin: 0;
        color: #aaa;
    }

    .upload-box button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #00b4d8;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .upload-box button:hover {
            background-color: #0096c6;
        }

.submit-button {
    display: block;
    width: 100%;
    padding: 5px 5px;
    background-color: #00b4d8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .submit-button:hover {
        background-color: #0096c6;
    }
/* Left section (login form) */
.left-section {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.registration-section,
.verification-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .registration-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .registration-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

.login-button {
    display: inline-block;
    padding: 5px 25px;
    background-color: #00b4d8;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-button i {
        margin-right: 10px;
    }

    .login-button:hover {
        background-color: #0096c6;
    }

.signup-link {
    margin-top: 30px;
    font-size: 1.1rem;
}

.error-message {
    background-color: #ffcccc;
    color: red;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none; /* Initially hidden */
}

.input-field {
    width: 100%;
    padding: 10px;
    border: 2px solid #00b4d8;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
}

    .input-field.error {
        border-color: red;
    }

// stop panel
/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    direction: rtl;*/ /* Default to Arabic */
/*}

.header {
    background-color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}*/
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-link {
    color: #00b4d8;
    text-decoration: none;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .lang-link:hover {
        color: #0096c6;
        text-decoration: underline;
    }

    /* Add active language indicator */
    .lang-link.active {
        font-weight: bold;
        text-decoration: underline;
    }
/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 100px;
    height: auto;
    margin-right: 10px;
}

.logo-text {
    color: #00b4d8;
    font-weight: bold;
}

.logo-subtext {
    font-size: 12px;
    color: #555;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #00b4d8;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
}

/* Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: #f0f0f0;
    }

/* Search Bar */
.search-container {
    position: relative;
    margin-left: 10px;
    align-items: baseline;
    display: flex;
}

.search-icon {
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

.search-input {
    display: none;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 50%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    cursor: pointer;
    margin-left: 10px;
}

/* Theme Switcher */
.theme-switcher {
    margin-left: 20px;
    cursor: pointer;
}

/* Notifications */
.notifications {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px 6px;
    font-size: 10px;
}

.notification-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Account Picture */
.account-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 20px;
    cursor: pointer;
}

.account-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        margin-top: 10px;
        flex-direction: column;
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.navbar {
    border-radius: 0px 0px 20px 20px;
}
/*Main Page*/
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

    .hero-text h1 {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1.2;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .featured-cars-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
    }

    #featuredCars {
        padding: 10px 5px;
        margin-bottom: -1px;
        min-height: 510px;
        /* Avoid cutout if font or line is bigger */
        font: inherit;
    }

    .filter-dropdown {
        float: right;
        margin-bottom: 20px;
    }

    .car-card {
        width: calc(33% - 20px);
        margin: 10px;
        padding: 20px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        display: inline-block;
        vertical-align: top;
    }

    .car-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .price-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }

    .rent-button {
        background-color: #00b4d8;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
    }

    .view-all-button {
        display: block;
        margin: 40px auto;
        padding: 15px 30px;
        background-color: #00b4d8;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .k-datepicker input {
        width: 100% !important;
    }

    .services-container {
        max-width: 800px;
        margin: 40px auto;
    }

    .services-section-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f0f8ff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }

    .services-content {
        flex: 1;
    }

    .services-section-card h3 {
        color: #007bff;
        margin: 0 0 10px;
        font-size: 1.2rem;
    }

    .services-section-card p {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .services-view-btn {
        background: transparent;
        border: 2px solid #007bff;
        color: #007bff;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: 20px;
    }

        .services-view-btn:hover {
            background-color: #e6f7ff;
        }

    .services-filled {
        background-color: #007bff !important;
        border-color: #007bff !important;
        color: white !important;
    }

        .services-filled:hover {
            background-color: #0069d9;
        }


    /* Contract List Styles */
    .contract-list-container {
        background-color: #f0f8ff;
        padding: 20px;
    }

    .scrollable-contracts {
        max-height: 350px; /* Adjust based on item height */
        overflow-y: auto;
        margin-bottom: 20px;
    }

    .contract-item {
        display: flex;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 10px;
    }


    .contract-details {
        flex: 1;
    }

        .contract-details h3 {
            margin: 0 0 5px;
            font-size: 16px;
            color: var(--buttons-hover-color);
        }

        .contract-details p {
            margin: 0;
            font-size: 12px;
            color: #666;
        }

    .date-button {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

        .date-button p {
            margin: 0 0 10px;
            font-weight: bold;
        }

    .read-more-btn {
        padding: 8px 16px;
        background-color: #00bfa5;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .read-more-btn:hover {
            background-color: #00897b;
        }

    /* Scrollbar Styling (Optional) */
    .scrollable-contracts::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-contracts::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .scrollable-contracts::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

        .scrollable-contracts::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .dropdown-menu {
        display: none;
        position: absolute;
        right: 0;
        background-color: white;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 1000;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 5px 0;
    }

        .dropdown-menu .dropdown-item {
            padding: 10px 16px;
            display: block;
            text-decoration: none;
            color: #333;
        }

            .dropdown-menu .dropdown-item:hover {
                background-color: #f1f1f1;
            }

    .dropdown-menu, .notification-dropdown {
        display: none;
        position: absolute;
        right: 0;
        background-color: white;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 1000;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 5px 0;
    }

        .dropdown-menu .dropdown-item,
        .notification-dropdown .dropdown-item {
            padding: 10px 16px;
            display: block;
            text-decoration: none;
            color: #333;
        }

            .dropdown-menu .dropdown-item:hover,
            .notification-dropdown .dropdown-item:hover {
                background-color: #f1f1f1;
            }

    /*.invoice-container {
        width: 8.5in;*/ /* A4 width */
    /*max-width: 100%;
        background-color: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
    }

    .invoice-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .invoice-logo-section {
        background-color: #009688;
        color: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 40%;
        display: flex;
        align-items: center;
    }

    .invoice-logo {
        width: 50px;
        height: 50px;
        background-color: #fff;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
    }

        .invoice-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .invoice-company-info {
        text-align: left;
    }

        .invoice-company-info h1 {
            margin: 0;
            font-size: 24px;
        }

        .invoice-company-info p {
            margin: 5px 0;
            font-size: 14px;
        }

    .invoice-amount-due {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 50%;
        text-align: left;
    }

        .invoice-amount-due h2 {
            margin-top: 0;
            font-size: 28px;
            font-weight: bold;
        }

        .invoice-amount-due p {
            margin-top: 5px;
            font-size: 14px;
        }

    .invoice-to {
        text-align: left;
        margin-top: 20px;
    }

        .invoice-to h2 {
            margin: 0;
            font-size: 20px;
        }

        .invoice-to p {
            margin: 5px 0;
            font-size: 14px;
        }

    .invoice-details {
        margin-top: 30px;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        text-align: left;
    }

    .invoice-details-row {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

        .invoice-details-row div {
            text-align: left;
        }

        .invoice-details-row strong {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
        }

    .invoice-item {
        margin-top: 20px;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        text-align: left;
    }

        .invoice-item table {
            width: 100%;
            border-collapse: collapse;
        }

        .invoice-item td {
            padding: 8px 0;
            font-size: 14px;
        }

    .invoice-total {
        margin-top: 20px;
        text-align: right;
        font-size: 24px;
        font-weight: bold;
    }

    .invoice-terms {
        margin-top: 20px;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        text-align: left;
    }

        .invoice-terms strong {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .invoice-terms p {
            font-size: 12px;
            line-height: 1.5;
        }

    .invoice-footer {
        margin-top: 20px;
        background-color: #009688;
        height: 10px;
        width: 100%;
    }*/
    .invoice-a4-container {
        width: 794px; /* A4 width in px at 96dpi */
        height: 1123px; /* A4 height in px at 96dpi */
        margin: 20px auto;
        background-color: white;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 30px;
    }

    .invoice-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .invoice-logo-box {
        background: #20b6a3;
        color: white;
        padding: 20px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        font-weight: bold;
        width: 240px;
        height: 130px;
        background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 10%, transparent 11%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 10%, transparent 11%);
    }

        .invoice-logo-box img {
            width: 40px;
            height: auto;
            margin-bottom: 10px;
        }

    .invoice-agency-name {
        font-size: 1.4em;
    }

    .invoice-agency-code {
        font-size: 0.9em;
        opacity: 0.9;
    }

    .invoice-right-box {
        text-align: right;
    }

    .invoice-amount-due {
        background-color: #f4f7fa;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .invoice-amount-due-label {
        font-size: 0.9em;
        color: #888;
    }

    .invoice-amount-due-value {
        font-size: 1.8em;
        font-weight: bold;
        color: #111;
    }

    .invoice-client {
        font-size: 0.95em;
        color: #333;
    }

        .invoice-client strong {
            display: block;
            font-size: 1.1em;
            margin-bottom: 4px;
        }

    .invoice-details {
        margin-top: 40px;
        border-collapse: collapse;
        width: 100%;
        font-size: 0.95em;
    }

        .invoice-details th,
        .invoice-details td {
            text-align: left;
            padding: 10px;
        }

    .invoice-details-header {
        color: #666;
        font-size: 0.9em;
    }

    .invoice-table {
        margin-top: 20px;
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95em;
    }

        .invoice-table th, .invoice-table td {
            padding: 12px;
            background-color: #f4f7fa;
            border-radius: 8px;
        }

    .invoice-total {
        text-align: right;
        font-size: 1.4em;
        font-weight: bold;
        margin-top: 20px;
        color: #20b6a3;
    }

    .invoice-terms {
        font-size: 0.85em;
        color: #777;
        margin-top: 40px;
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 10px;
    }

    .invoice-footer-line {
        height: 5px;
        background-color: #20b6a3;
        margin-top: 40px;
        border-radius: 10px;
    }


    body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
    }

