/* ======================== FORMS ======================== */

.form-block {
    width: 100%;
    margin: 20px 0;
}

.form-row {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

.form-row.actions {
    padding: 25px 0;
}

.form-row.center {
    justify-content: center;
}

.form-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 5px 0;
    padding: 0 5px;
    flex: auto;
}

form .form-row .form-col:last-child {
    /*margin: 10px 0 0 0;*/
}

form .form-row .form-col:only-child {
    /*margin: 0;*/
}

.form-col.row {
    flex-direction: row;
}

.form-col.text-center {
    text-align: center;
}

.form-col .error-messages {
    position: relative;
}

.form-col.text-center .error-message {
    /*left: 50%;
    transform: translate(-50%, 100%);*/
}

.form-col.center {
    align-items: center;
}

/*.form-row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
}*/

.form-row>p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    padding: 0;
    width: 100%;
    color: #222222;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.form-row .input-container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.form-row .input-container>div {
    width: 100%;
}

/* ======================== FORM INPUTS ======================== */

/* ========== Dropdown ========== */
select {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    max-height: 40px;
    font-size: 12px;
    font-weight: 300;
    color: #191919;
    border: 1px solid #d0d1d2;
    border-radius: 3px;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='15' height='15' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='%23999999'/></g></svg>") no-repeat;
    background-position: right 9px top 50%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    box-shadow: none !important;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

select:disabled {
    border: 1px solid #b2b2b2;
    background-color: #f5f5f5;
    color: #b9b9b9;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    width: 200px;
    height: 100px;
}

/* ========== Custom Dropdown ========== */

.dropdown-options {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-options .select-trigger {
    display: flex;
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    font-size: 13px;
    font-weight: 300;
}

.select-trigger {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    max-height: 40px;
    font-size: 13px;
    font-weight: 300;
    color: #191919;
    border: 1px solid #191919;
    border-radius: 3px;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='15' height='15' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='%23999999'/></g></svg>") no-repeat;
    background-position: right 9px top 50%;
    background-repeat: no-repeat;
    box-shadow: none !important;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* custom dropdown options */
.dropdown-options .custom-options {
    position: absolute;
    display: block;
    top: 96%;
    left: 0;
    right: 0;
    max-height: 200px;
    border: 1px solid #191919;
    border-top: 0;
    background-color: #ffffff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    overflow: auto;
}

.dropdown-options.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dropdown-options.open .custom-options::-webkit-scrollbar {
    width: 15px;
}

.dropdown-options.open .custom-options::-webkit-scrollbar-track {
    margin: 0;
    background-color: #ededed;
}

.dropdown-options.open .custom-options::-webkit-scrollbar-thumb {
    background-color: #dedede;
}

.dropdown-options.open .custom-options::-webkit-scrollbar-thumb:hover {
    background-color: #bababa;
}

.dropdown-options .custom-option {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 300;
    color: #191919;
    line-height: 30px;
    cursor: pointer;
    transition: all 0.5s;
}

.dropdown-options .custom-option:hover {
    cursor: pointer;
    background-color: #e3e3e3;
}

.dropdown-options .custom-option.selected {
    color: #191919;
    background-color: #d5d5d5;
}

.dropdown-options .custom-options .disabled {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 30px;
    transition: all 0.5s;
    color: #cccccc;
    background-color: #f9f9f9;
}

.dropdown-options .custom-options .disabled button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    float: none;
    font-size: 13px;
    font-weight: 300;
    color: #1a1a1a;
    background-color: transparent;
    text-align: center;
    text-decoration: underline;
    outline: none;
    transition: 0.2s ease-in-out;
    user-select: none;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dropdown-options .arrow {
    position: relative;
    height: 6px;
    width: 6px;
}

.dropdown-options .arrow::before,
.dropdown-options .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 1px;
    height: 100%;
    transition: all 0.5s;
}

.dropdown-options .arrow::before {
    left: -4px;
    transform: rotate(-45deg);
    background-color: #191919;
}

.dropdown-options .arrow::after {
    left: 0px;
    transform: rotate(45deg);
    background-color: #191919;
}

.open .arrow::before {
    left: -4px;
    transform: rotate(45deg);
}

.open .arrow::after {
    left: 0px;
    transform: rotate(-45deg);
}

.dropdown-options .custom-options .product-option-price {
    font-weight: 300;
}

.dropdown-options .custom-options .product-option-price .option-old-price {
    font-weight: 200;
    text-decoration: line-through 1px #999999;
}

/* ========== Labels ========== */

.form-label,
label {
    margin: 0 0 4px 0;
    padding: 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #101010;
    text-align: left;
}

.form-label a,
label a {
    font-weight: inherit;
    color: #979797;
}

.form-label a:hover,
label a:hover {
    color: inherit;
}

.form-label {
    display: block;
}

/* ========== Inputs (Text, Email, Password, Tel, Number, Textarea) ========== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
textarea {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    max-height: 40px;
    font-size: 12px;
    font-weight: 300;
    color: #101010;
    border: 1px solid #d0d1d2;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: none !important;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="search"]:focus,
textarea:focus {
    border: 1px solid #bbbbbb;
    box-shadow: none !important;
    outline: none;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="tel"]:disabled,
input[type="date"]:disabled,
input[type="time"]:disabled,
input[type="search"]:disabled,
select:disabled {
    border: 1px solid #b2b2b2;
    background-color: #f5f5f5;
    color: #b9b9b9;
}

input[type="text"].text-center,
input[type="email"].text-center,
input[type="password"].text-center,
input[type="number"].text-center,
input[type="tel"].text-center,
input[type="date"].text-center,
input[type="time"].text-center,
input[type="search"].text-center,
textarea.text-center {
    text-align: center;
}

/* Change Color of Placeholders */
input::placeholder,
textarea::placeholder {
    font-size: 12px;
    font-weight: 400;
    color: #dddddd;
    opacity: 1;
}

/* ========== Inputs (Checkbox) ========== */

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label:before {
    width: 20px;
    height: 20px;
    content: "";
    display: inline-block;
    margin: 0 7px 0 0;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #d0d0d0;
}

input[type="checkbox"].validation-error+label:before {
    border: 1px solid transparent;
    border-color: #ff6566 !important;
}

input[type="checkbox"]:checked+label:before {
    content: "\f00c";
        font-family: "FontAwesome";
        color: #222222;
        font-size: 12px;
        line-height: 18px;
}








textarea {
    max-width: 100%;
    min-height: 150px;
    max-height: 350px;
}

/* ========== Textarea ========== */

textarea {
    max-width: 100%;
    min-height: 150px;
    max-height: 350px;
}

/* ========== Input Type Search ========== */

input[type="search"]::-ms-clear {
    /* removes close icon - IE */
    display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* ========== Input Type Checkbox / Radio ========== */

input[type="checkbox"]+label,
input[type="radio"]+label {
    top: 0;
    margin: 5px 10px 5px 0;
    text-transform: none;
    letter-spacing: normal;
    color: #101010;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
}

.radio-buttons>li,
.checkboxes>li {
    padding: 7px 0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]+label:before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ededed;
    border-radius: 100%;
    margin: -3px 10px 0 0;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 0;
}

input[type="radio"].validation-error+label:before {
    border: 1px solid transparent;
    border-color: #ff6566 !important;
}

input[type="radio"]:checked+label:before {
    background-color: #222222;
    border: 5px solid #ededed;
    padding: 1px;
}

input[type="radio"]:focus {
    outline: none;
}

/* ======================== FORM VALIDATION ======================== */

.validation-success {
    border-color: #66cc99 !important;
}

.validation-error {
    border-color: #ff6566 !important;
}

.form-row i {
    visibility: hidden;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0%, -50%);
}

.form-row i.fa-check-circle {
    color: #66cc99;
    visibility: visible;
}

.form-row i.fa-exclamation-circle {
    color: #ff6566;
    visibility: visible;
}

.form-row .error-message {
    display: block;
    margin: 3px 0 0 0;
    padding: 0;
    color: #ff6566;
    font-size: 10px;
    font-weight: 300;
    white-space: nowrap;
    visibility: hidden;
}

.form-row .error-message {
    visibility: visible;
}

.form-row h4 {
    display: flex;
    margin: 0 0 30px 0;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    color: #191919;
}

.form-row .form-description {
    display: flex;
    margin: 0 0 30px 0;
    padding: 20px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    background-color: #101010;
}





/* ======================== Slide Forms ======================== */

#slide_form_container {
    margin: 0;
    top: 0;
    right: 30px;
    left: auto;
    width: 450px;
    height: 100%;
}


#slide_form_container {
    position: fixed;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    top: calc(50% + var(--main-header-height)/2);
    width: 95%;
    right: 0;
    left: 0;
    height: calc(100% - var(--main-header-height)*2);
    /* -webkit-box-shadow: 5px 5px 15px 5px #000000; */
    /* box-shadow: 0px 0px 11px 2px #454545; */
    border-radius: 15px;
    background-color: #ffffff;
    -webkit-transform: translate(100%, -50%);
    -moz-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    -o-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1000;
}

#slide_form_container.is-active {
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    opacity: 1 !important;
    visibility: visible !important;
}















@media (min-width: 992px) {

    #slide_form_container {
        position: fixed;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        padding: 0;
        top: 0;
        width: 95%;
        right: 0;
        left: 0;
        height: 100%;
        /* -webkit-box-shadow: 5px 5px 15px 5px #000000; */
        /* box-shadow: 0px 0px 11px 2px #454545; */
        border-radius: 0;
        background-color: #ffffff;
        -webkit-transform: translate(100%, 0%);
        -moz-transform: translate(100%, 0%);
        -ms-transform: translate(100%, 0%);
        -o-transform: translate(100%, 0%);
        transform: translate(100%, 0%);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        z-index: 1000;
    }

    #slide_form_container.is-active {
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        opacity: 1 !important;
        visibility: visible !important;
    }

    #slide_form_container {
        margin: 0;
        top: 0;
        right: 0;
        left: auto;
        width: 450px;
        height: 100%;
    }
}

.form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
}

.form-container .form-title {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--main-header-height);
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    color: var(--main-background-color);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #dddddd;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.form-container .form-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: 0;
    padding: var(--main-header-height) 0 50px 0;
    max-height: 100vh;
    flex: 1;
    overflow-x: auto;
}

.form-container .form-footer {
    position: relative;
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    bottom: 0;
    border-top: 1px solid #dddddd;
    box-shadow: 0px -12px 40px 30px #ffffff;
}

.form-footer button {
    display: flex;
    margin: auto;
}

.form-footer button.link,
.form-footer a {
    display: block;
    margin: 10px auto 10px auto;
    font-size: 12px;
    font-weight: 400;
    color: #979797;
    background-color: transparent;
    border: none;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

.form-footer button.link:hover,
.form-footer a:hover {
    color: #101010;
}

.form-container .form-wrapper::-webkit-scrollbar {
    width: 15px;
}

.form-container .form-wrapper::-webkit-scrollbar-track {
    margin: var(--main-header-height) 0 0 0;
    background-color: #ededed;
}

.form-container .form-wrapper::-webkit-scrollbar-thumb {
    background-color: #bababa;
}

.form-container .form-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #646464;
}

/* ============================================================----

Form Cards

============================================================---- */

.form-section {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 50px 0 0 0;
    max-width: 100%;
    background-color: #fafafa;
}

/* style radio options list container */
.form-card-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0;
    width: 100%;
    --gap: 3px;
    --columns: 1;
    gap: var(--gap);
    /*border: 3px solid #e0e1ee;*/
    transition: all 0.5s;
}

/*#car_services_dropdown [data-value="data-input"],
#special_services [data-value="data-input"] {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0;
    padding: 30px 20px;
    width: 190px;
    min-width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    max-width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    min-height: 170px;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: normal;
    border: 2px solid transparent;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.5s;
}*/

.form-card-container.validation-error .form-card {
    border-color: #ff6566 !important;
}

/* radio option */
.form-card {
    position: relative;
    display: flex;
    align-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 20px;
    width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    min-height: 190px;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    cursor: pointer;
    word-break: break-word;
    transition: all 0.3s ease-in-out;
}

.form-card:hover {
    background-color: #efefef;
}

.form-card[data-selected="true"] {
    background-color: #ffd452;
}

.form-card ion-icon {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: var(--main-theme-color);
    visibility: hidden;
}

.form-card[data-selected="true"] ion-icon {
    visibility: visible;
}

.form-card span.card-title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
    color: #101010;
    line-height: normal;
    text-align: center;
}

.form-card span {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 12px;
    color: #101010;
    line-height: normal;
    text-align: center;
}

.form-card .tld-price {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: normal;
    text-align: center;
}

.form-card .form-card-image {
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.form-card .sub-title {
    margin: 10px 0 0 0;
    padding: 10px;
    width: 100%;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    color: #ffffff;
    background-color: #101010;
}

.form-card .form-card-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 20px 0 auto 0;
    padding: 0;
    font-weight: 400;
    font-size: 12px;
    list-style-type: none;
}

.form-card .form-card-list li {
    margin: 0;
    text-align: center;
}

@media (min-width: 992px) {

    .form-card-container {
        --gap: 10px;
        --columns: 8;
        gap: var(--gap);
    }

}

#slide_form_container .form-card-container {
    --gap: 3px;
    --columns: 2;
    gap: var(--gap);
    justify-content: flex-start;
}

#slide_form_container .form-card-container .form-card {
    justify-content: center;
    align-items: flex-start;
    padding: 30px 5px;
    min-height: auto;
}

#slide_form_container .form-card span.card-title {
    font-size: 12px;
}

#slide_form_container .form-card-container .form-card .form-card-list img {
    width: 15px;
    margin: 0 7px 0 0;
}

#slide_form_container .form-card-container .form-card .form-card-list span {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: #656565;
}

#slide_form_container .form-card-container .form-card .form-card-list li {
    text-align: left;
}



.hidden-input-files {
    margin: 0 10px 0 0;
    padding: 10px;
    border: 1px solid #323232;
    background-color: transparent;
    cursor: pointer;
}

.soft-deleted {
    height: 65px;
    color: #000000;
    background-color: #ffc8c8 !important;
}





.tooltip-container {
    position: relative;
    display: inline-flex;
    margin: 0 4px;
    padding: 20p;
    opacity: 1;
}

.tooltip-container ion-icon {
    font-size: 25px;
    color: #000000;
}

table tbody tr:hover .tooltip-container ion-icon {
    color: #ffffff !important;
}

.tooltip-container span {
    visibility: hidden;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 20px;
    position: absolute;
    font-size: 12px;
    z-index: 9;
    top: 50%;
    transform: translate(0, -50%);
    margin-left: 32px;
    text-align: left;
    transition: opacity 1s;
}

.tooltip-container span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip-container input {
    display: none;
}

.tooltip-container input:checked+span {
    visibility: visible;
    opacity: 1;
}

/* ======================== DATETIME PICKER ======================== */

.calendar-container .calendar-nav {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
    width: 100%;
}

.calendar-container .nav-left,
.calendar-container .nav-center,
.calendar-container .nav-right {
    display: flex;
}

.calendar-container .nav-left:first-child {
    margin-right: auto;
    border-radius: 7px;
}

.calendar-container .nav-right:last-child {
    margin-left: auto;
    border-radius: 7px;
}

.calendar-container .calendar-nav button {
    background-color: #383838;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.calendar-container .calendar-nav button:hover {
    background-color: #4c4c4c;
}

.calendar-container .calendar-nav button:focus {
    outline: none;
}

/* Calendar Container */
.calendar-container {
    padding: 0;
    margin: 0;
}

.calendar-container .calendar {
    display: block;
}

/* Calendar Header */
.calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.calendar-container .calendar-header button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-container .calendar-header button:hover {
    background-color: #3e8e41;
}

/* Days Row (Week Names) */
.calendar-container .days-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: 0;
    padding: 5px;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    background-color: #000000;
}

/* Days Grid */
.calendar-container .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    padding: 15px 0;
    border: 1px solid #000000;
}

/* Days Styles */
.calendar-container .day,
.calendar-container .day-name,
.calendar-container .day-empty,
.calendar-container .day-previous-month,
.calendar-container .day-next-month {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    margin: auto;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calendar-container .day-previous-month,
.calendar-container .day-next-month {
    color: #bcbcbc;
    cursor: not-allowed;
}

.calendar-container .day {
    background-color: #fff;
    color: #000000;
    border: 1px solid transparent;
}

.calendar-container .day:hover {
    border: 1px solid #999;
}

.calendar-container .day.today {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #000000;
}

.calendar-container .day.disabled {
    pointer-events: none;
    color: #bcbcbc;
    background-color: #f6f6f6;
    cursor: not-allowed;
}

.calendar-container .day.selected {
    background-color: #4babff;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #4babff;
}

/* Selected Date Text */
.selected-date-text {
    display: block;
    width: 100%;
    padding: 7px;
    color: #333;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

/* Time Slots Container */
.calendar-container + .time-slots {
    margin-top: 15px;
    padding: 0;
}

.calendar-container + .time-slots .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 3px;
    padding: 0;
    background-color: #f9f9f9;
}

/* Time Slot Styles */
.calendar-container + .time-slots .time-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    background-color: #fff;
    color: #333;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-container + .time-slots .time-slot.available {
    background-color: #d4f4dd;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.calendar-container + .time-slots .time-slot.available:hover:not(.selected) {
    background-color: #bce4c5;
    transform: scale(1.05);
    cursor: pointer;
}

.calendar-container + .time-slots .time-slot.blocked {
    background-color: #f6f6f6;
    color: #bcbcbc;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.pending,
.calendar-container + .time-slots .time-slot.scheduled {
    background-color: #000000;
    color: #ffffff;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.reserved {
    background-color: #87ceeb;
    color: #fff;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.overdue {
    background-color: #f5a623;
    color: #fff;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.missed {
    background-color: #ff4500;
    color: #fff;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.done {
    background-color: green;
    color: #ffffff;
    cursor: not-allowed;
}

.calendar-container + .time-slots .time-slot.selected {
    background-color: #4babff;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .calendar-container + .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-container .calendar-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .calendar-container .day {
        width: 30px;
        height: 30px;
    }
}