#booking-app-container {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.bw-filter-box {
    border: 1px solid #5ab0b9;
    border-radius: 25px;
    padding: 12px 20px;
    margin-bottom: 15px;
    background: #fff;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5ab0b9;
    user-select: none;
}

.bw-input {
    border: 1px solid #5ab0b9;
    border-radius: 25px;
    padding: 12px 20px;
    margin-bottom: 15px;
    background: #fff;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    color: #333;
}

.bw-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 5px;
}

.bw-drop-item {
    padding: 12px 20px;
    font-size: 14px;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.bw-drop-item:hover {
    background: #f0f8f9;
    color: #5ab0b9;
}

.bw-drop-item:last-child {
    border-bottom: none;
}

.bw-doc-card {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    gap: 20px;
}

.bw-doc-left {
    display: flex;
    width: 100%;
}

.bw-doc-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media(min-width: 768px) {
    .bw-doc-card {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .bw-doc-left {
        width: 50%;
        margin-bottom: 0;
    }

    .bw-doc-right {
        width: 50%;
    }
}

.bw-spinner {
    border: 4px solid rgba(90, 176, 185, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #5ab0b9;
    animation: bw-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes bw-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bw-doc-photo {
    width: 120px;
    flex-shrink: 0;
}

.bw-doc-photo img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.bw-doc-info {
    padding-left: 20px;
    flex-grow: 1;
}

.bw-doc-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.bw-doc-spec {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.bw-cal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    width: 100%;
    text-align: center;
}

.bw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
    max-width: 300px;
}

.bw-cal-dow {
    font-size: 12px;
    color: #999;
    padding-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.bw-cal-day {
    padding: 8px 0;
    font-size: 14px;
    border: none;
    background: #f3f4f6;
    color: #ccc;
    border-radius: 4px;
    cursor: default;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bw-cal-day.active {
    background: #5ab0b9;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.2s;
}

.bw-cal-day.active:hover {
    opacity: 0.8;
}

.bw-cal-day.empty {
    background: transparent;
}

.bw-time-panel {
    display: none;
    width: 100%;
    max-width: 320px;
}

.bw-time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.bw-time-btn {
    padding: 8px 14px;
    border: 1px solid #5ab0b9;
    color: #5ab0b9;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.bw-time-btn.selected, .bw-time-btn:hover {
    background: #5ab0b9;
    color: #fff;
}

.bw-back-btn {
    background: transparent;
    border: none;
    color: #5ab0b9;
    font-size: 24px;
    cursor: pointer;
    padding-right: 15px;
}

.bw-btn-proceed {
    width: 100%;
    padding: 12px;
    background: #ccc;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.bw-btn-proceed.ready {
    background: #28a745;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(40,167,69,0.3);
}

.service-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item:hover, .service-item.selected {
    background: #f0f8f9;
}

.bw-form-wrapper {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.bw-f-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}

.bw-f-input:focus {
    border-color: #5ab0b9;
    box-shadow: 0 0 0 3px rgba(90, 176, 185, 0.15);
}

.hidden {
    display: none !important;
}

