/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Template: twentytwentyone
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,portfolio
Version: 2.6.1764005121
Updated: 2025-11-24 17:25:21

*/

/* ================= SLIDER ================= */
.appointment-slider {
    width: 100%;
    margin: auto;
}

.appointment-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.appointment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.appointment-title {
    font-size: 20px;
    font-weight: 700;
    color: #245390;
    margin-bottom: 10px;
}

.appointment-date {
    font-size: 15px;
    color: #6fa1d6;
    margin-bottom: 20px;
}

.appointment-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 25px;
    background: #008e97;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.appointment-btn:hover {
    background: #245390;
}

/* ================= POPUP ================= */
.appointment-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9998;
}

.appointment-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 95%;
    max-width: 900px;
    padding: 30px;
    border-radius: 22px;
    display: none;
    z-index: 9999;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 30px;
    cursor: pointer;
    color: #245390;
}

.popup-title {
    color: #245390;
    margin-bottom: 5px;
}

.popup-doctor {
    color: #6fa1d6;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ================= FORM ================= */
.custom-form-wrapper {
    background: #f1f7ff;
    padding: 40px;
    border-radius: 20px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid #d9e9f3;
    background: #fff;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.custom-form textarea {
    height: 140px;
    resize: none;
}

.send-btn {
    width: 160px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    background: #0bb7a7;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}



