/* Styles for Medical History Appointment Picker inside Anamnesebogen */
.tv-mh-appointment-booking-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.tv-mh-appointment-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.tv-mh-appointment-toggle-wrap:hover {
    border-color: #936179;
}

.tv-mh-appointment-toggle-title {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-mh-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 6px;
    margin-top: 8px;
}

.tv-mh-slot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    border: 1px solid #cbd5e1 !important;
    background-color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    cursor: pointer;
    transition: all 0.15s ease !important;
    user-select: none;
}

.tv-mh-slot-btn:hover {
    border-color: #936179 !important;
    background-color: #fdf2f8 !important;
    color: #936179 !important;
}

.tv-mh-slot-btn.active-slot {
    border-color: #936179 !important;
    background-color: #936179 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(147, 97, 121, 0.25) !important;
}

/* Review Mode Read-Only Appointment Display */
.tv-mh-review-appointment-box {
    border: none;
    background: transparent;
    padding: 0;
}

.tv-mh-review-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.tv-mh-has-appointment .tv-mh-review-app-header {
    color: #166534;
}

.tv-mh-no-appointment .tv-mh-review-app-header {
    color: #64748b;
}

.tv-mh-review-app-body {
    font-size: 14px;
    line-height: 1.6;
}

.tv-mh-has-appointment .tv-mh-review-app-body {
    color: #1e293b;
}

.tv-mh-no-appointment .tv-mh-review-app-body {
    color: #64748b;
}

