/* /Components/ChooseDate.razor.rz.scp.css */
/* Eltern-Container der Buttons anpassen */
.row.g-3[b-nf9ry3piu7] {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Wichtig: Gleiche Höhe erzwingen */
}

/* Jede Button-Spalte */
.col-md-4[b-nf9ry3piu7] {
    display: flex; /* Damit der Button die Höhe der Elternzeile übernimmt */
}

.appointment-type-btn[b-nf9ry3piu7] {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Neu: Titel/Beschreibung verteilen */
}

    .appointment-type-btn:hover[b-nf9ry3piu7] {
        border-color: #3498db;
        transform: translateY(-2px);
    }

    .appointment-type-btn.active[b-nf9ry3piu7] {
        border-color: #3498db;
        background-color: #f8fafc;
    }

.type-title[b-nf9ry3piu7] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    flex-shrink: 0; /* Verhindert Schrumpfen */
}

.type-description[b-nf9ry3piu7] {
    font-size: 0.9rem;
    color: #7f8c8d;
    flex-grow: 1; /* Füllt verfügbaren Platz */
    display: flex;
    align-items: center; /* Zentriert Text vertikal */
    justify-content: center; /* Zentriert Text horizontal */
    word-break: break-word; /* Verhindert Textüberlauf */
}

.week-navigation[b-nf9ry3piu7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 20px;
}

.nav-btn[b-nf9ry3piu7] {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

    .nav-btn:disabled[b-nf9ry3piu7] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.week-title[b-nf9ry3piu7] {
    font-weight: 500;
    font-size: 1.2em;
}

.week-view[b-nf9ry3piu7] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.week-header[b-nf9ry3piu7] {
    grid-template-columns: repeat(5, 1fr);
    background-color: #f8f9fa;
    display: flex;
    min-width: 100%;
    width: max-content;
}

.day-header[b-nf9ry3piu7] {
    padding: 12px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    min-width: 120px;
    width: 20%;
}

    .day-header.today[b-nf9ry3piu7] {
        background-color: #e3f2fd;
    }

.time-slots[b-nf9ry3piu7] {
    grid-template-columns: repeat(5, 1fr);
    display: flex;
    min-width: 100%;
    width: max-content;
}

.day-column[b-nf9ry3piu7] {
    border-right: 1px solid #e0e0e0;
    min-height: 200px;
    min-width: 120px;
    width: 20%;
}

.time-slot[b-nf9ry3piu7] {
    display: block;
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    background: #e3f2fd;
    color: #1976d2;
    cursor: pointer;
    text-align: center;
}

    .time-slot:hover[b-nf9ry3piu7] {
        background: #bbdefb;
    }

    .time-slot.selected[b-nf9ry3piu7] {
        background: #1976d2;
        color: white;
    }

.btn-primary[b-nf9ry3piu7] {
    background: #1976d2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-primary:disabled[b-nf9ry3piu7] {
        background: #b0bec5;
        cursor: not-allowed;
    }

@@media (max-width: 768px) {
    .day-header[b-nf9ry3piu7], .day-column[b-nf9ry3piu7] {
        min-width: 150px;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-9ww144nuyd] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-9ww144nuyd] {
    flex: 2;
}

.sidebar[b-9ww144nuyd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-9ww144nuyd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-9ww144nuyd]  a, .top-row[b-9ww144nuyd]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-9ww144nuyd]  a:hover, .top-row[b-9ww144nuyd]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-9ww144nuyd]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-9ww144nuyd] {
        display: none;
    }

    .top-row.auth[b-9ww144nuyd] {
        justify-content: space-between;
    }

    .top-row[b-9ww144nuyd]  a, .top-row[b-9ww144nuyd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    /*.page {
        flex-direction: row;
    }*/

    .sidebar[b-9ww144nuyd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-9ww144nuyd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-9ww144nuyd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-9ww144nuyd], article[b-9ww144nuyd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
