@import '_content/CalendarComponent/CalendarComponent.62op4vv369.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

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

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
    .login-container {
        background-color: #f9f9f9;
        position: relative;
    }

}
*/
/* /Layout/NavMenu.razor.rz.scp.css */
/* Dropdown Styles */
.nav-item-dropdown[b-7gm8kwmpor] {
    position: relative;
}

.nav-dropdown-toggle[b-7gm8kwmpor] {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s;
}

    .nav-dropdown-toggle:hover[b-7gm8kwmpor] {
        background-color: rgba(0, 0, 0, 0.05);
    }

.dropdown-icon[b-7gm8kwmpor] {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.nav-item-dropdown.dropdown-open .dropdown-icon[b-7gm8kwmpor] {
    transform: rotate(180deg);
}

.nav-dropdown-menu[b-7gm8kwmpor] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .nav-dropdown-menu.show[b-7gm8kwmpor] {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .nav-dropdown-menu .dropdown-item[b-7gm8kwmpor] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        color: inherit;
        text-decoration: none;
        transition: background-color 0.2s;
        white-space: nowrap;
    }

        .nav-dropdown-menu .dropdown-item:hover[b-7gm8kwmpor] {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .nav-dropdown-menu .dropdown-item i[b-7gm8kwmpor] {
            font-size: 1rem;
        }

/* Mobile angepasst */
@media (max-width: 768px) {
    .nav-dropdown-menu[b-7gm8kwmpor] {
        position: static;
        box-shadow: none;
        min-width: auto;
        background-color: rgba(0, 0, 0, 0.05);
    }

        .nav-dropdown-menu .dropdown-item[b-7gm8kwmpor] {
            padding-left: 2.5rem;
        }
}
/* /Pages/Appointments/AppointmentHistoryComponent.razor.rz.scp.css */
.appointment-history-container[b-0nh6anx5nr] {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .appointment-history-container h3[b-0nh6anx5nr] {
        margin: 0 0 20px 0;
        color: #333;
        font-size: 1.5rem;
        font-weight: 600;
    }

/* Loading State */
.loading[b-0nh6anx5nr] {
    text-align: center;
    padding: 60px 20px;
}

.spinner[b-0nh6anx5nr] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-0nh6anx5nr 1s linear infinite;
    margin: 0 auto 15px;
}

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

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

/* No Data State */
.no-data[b-0nh6anx5nr] {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
}

/* Table Styles */
.table-responsive[b-0nh6anx5nr] {
    overflow-x: auto;
}

.history-table[b-0nh6anx5nr] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .history-table thead[b-0nh6anx5nr] {
        background: #f8f9fa;
    }

    .history-table th[b-0nh6anx5nr] {
        padding: 12px;
        text-align: left;
        font-weight: 600;
        color: #555;
        border-bottom: 2px solid #dee2e6;
    }

    .history-table td[b-0nh6anx5nr] {
        padding: 12px;
        border-bottom: 1px solid #dee2e6;
        vertical-align: top;
    }

.history-row[b-0nh6anx5nr] {
    transition: background-color 0.2s;
}

    .history-row:hover[b-0nh6anx5nr] {
        background-color: #f8f9fa;
    }

/* Row Colors by Type */
.row-created[b-0nh6anx5nr] {
    border-left: 4px solid #28a745;
}

.row-updated[b-0nh6anx5nr] {
    border-left: 4px solid #007bff;
}

.row-deleted[b-0nh6anx5nr] {
    border-left: 4px solid #dc3545;
}

.row-approved[b-0nh6anx5nr] {
    border-left: 4px solid #28a745;
}

.row-rejected[b-0nh6anx5nr] {
    border-left: 4px solid #ffc107;
}

/* Cell Styles */
.date-cell[b-0nh6anx5nr] {
    white-space: nowrap;
    color: #666;
    min-width: 130px;
}

.action-cell[b-0nh6anx5nr] {
    min-width: 100px;
}

.user-cell[b-0nh6anx5nr] {
    color: #333;
    font-weight: 500;
    min-width: 150px;
}

.changes-cell[b-0nh6anx5nr] {
    min-width: 300px;
}

/* Badges */
.badge[b-0nh6anx5nr] {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-created[b-0nh6anx5nr] {
    background: #d4edda;
    color: #155724;
}

.badge-updated[b-0nh6anx5nr] {
    background: #cce5ff;
    color: #004085;
}

.badge-deleted[b-0nh6anx5nr] {
    background: #f8d7da;
    color: #721c24;
}

.badge-approved[b-0nh6anx5nr] {
    background: #d4edda;
    color: #155724;
}

.badge-rejected[b-0nh6anx5nr] {
    background: #fff3cd;
    color: #856404;
}

.badge-default[b-0nh6anx5nr] {
    background: #e9ecef;
    color: #495057;
}

/* Changes Details */
.changes-details[b-0nh6anx5nr] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.change-item[b-0nh6anx5nr] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .change-item strong[b-0nh6anx5nr] {
        color: #555;
        min-width: 100px;
    }

.old-value[b-0nh6anx5nr] {
    color: #dc3545;
    text-decoration: line-through;
    padding: 2px 8px;
    background: #f8d7da;
    border-radius: 4px;
}

.new-value[b-0nh6anx5nr] {
    color: #28a745;
    font-weight: 600;
    padding: 2px 8px;
    background: #d4edda;
    border-radius: 4px;
}

.arrow[b-0nh6anx5nr] {
    color: #999;
    font-weight: bold;
}

/*Status auskommentieren, wenn Universale Badges genutzt werden*/
.status-badge[b-0nh6anx5nr] {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending[b-0nh6anx5nr] {
    background: #fff3cd;
    color: #856404;
}

.status-approved[b-0nh6anx5nr] {
    background: #d4edda;
    color: #155724;
}

.status-rejected[b-0nh6anx5nr] {
    background: #f8d7da;
    color: #721c24;
}

.status-canceled[b-0nh6anx5nr] {
    background: #e9ecef;
    color: #495057;
}

.description-change[b-0nh6anx5nr] {
    font-style: italic;
    color: #666;
}

.no-details[b-0nh6anx5nr] {
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-history-container[b-0nh6anx5nr] {
        padding: 15px;
    }

    .history-table[b-0nh6anx5nr] {
        font-size: 0.85rem;
    }

        .history-table th[b-0nh6anx5nr],
        .history-table td[b-0nh6anx5nr] {
            padding: 8px;
        }

    .change-item[b-0nh6anx5nr] {
        flex-direction: column;
        align-items: flex-start;
    }

        .change-item strong[b-0nh6anx5nr] {
            min-width: auto;
        }

    /* Stack table on mobile */
    .history-table thead[b-0nh6anx5nr] {
        display: none;
    }

    .history-table[b-0nh6anx5nr],
    .history-table tbody[b-0nh6anx5nr],
    .history-table tr[b-0nh6anx5nr],
    .history-table td[b-0nh6anx5nr] {
        display: block;
        width: 100%;
    }

        .history-table tr[b-0nh6anx5nr] {
            margin-bottom: 20px;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 10px;
        }

        .history-table td[b-0nh6anx5nr] {
            border: none;
            padding: 8px 0;
            position: relative;
        }

            .history-table td[b-0nh6anx5nr]::before {
                content: attr(data-label);
                font-weight: 600;
                display: block;
                margin-bottom: 5px;
                color: #555;
            }

    .date-cell[b-0nh6anx5nr]::before {
        content: "Datum/Zeit:";
    }

    .action-cell[b-0nh6anx5nr]::before {
        content: "Aktion:";
    }

    .user-cell[b-0nh6anx5nr]::before {
        content: "Ge�ndert von:";
    }

    .changes-cell[b-0nh6anx5nr]::before {
        content: "�nderungen:";
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Home.razor.css - Mobile-optimiert */

.dashboard-container[b-f7jqz2hrmx] {
    padding: 2rem;
}

.welcome-section[b-f7jqz2hrmx] {
    margin-bottom: 2rem;
}

    .welcome-section h2[b-f7jqz2hrmx] {
        color: #333;
        margin-bottom: 0.5rem;
    }

.stat-card[b-f7jqz2hrmx] {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .stat-card:hover[b-f7jqz2hrmx] {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.stat-icon[b-f7jqz2hrmx] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.action-card[b-f7jqz2hrmx] {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}

    .action-card:hover[b-f7jqz2hrmx] {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        background-color: #f8f9fa;
    }

.action-icon[b-f7jqz2hrmx] {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.manager-card:hover .action-icon[b-f7jqz2hrmx] {
    color: #ffc107;
}

.admin-card:hover .action-icon[b-f7jqz2hrmx] {
    color: #dc3545;
}

.action-card h6[b-f7jqz2hrmx] {
    margin: 0;
    color: #495057;
}

.action-card .badge[b-f7jqz2hrmx] {
    margin-top: 0.5rem;
}

/* FOOTER STYLES ENTFERNT - Wird von app.css gehandhabt */
/* Die folgenden Styles sind auskommentiert, damit sie nicht app.css überschreiben */

/*
.legal-footer-fixed-full {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 20px 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
}

.legal-links {
    border-left: 2px solid #fff;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-links a:hover {
    text-decoration: underline;
}
*/

/* ===== MOBILE OPTIMIERUNG ===== */
@media (max-width: 768px) {
    .dashboard-container[b-f7jqz2hrmx] {
        padding: 1rem;
    }

    .welcome-section h2[b-f7jqz2hrmx] {
        font-size: 1.5rem;
    }

    .stat-icon[b-f7jqz2hrmx] {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .action-icon[b-f7jqz2hrmx] {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .dashboard-container[b-f7jqz2hrmx] {
        padding: 0.5rem;
    }

    .welcome-section h2[b-f7jqz2hrmx] {
        font-size: 1.25rem;
    }

    .stat-icon[b-f7jqz2hrmx] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .action-icon[b-f7jqz2hrmx] {
        font-size: 1.6rem;
    }
}
/* /Pages/HomeOld.razor.rz.scp.css */
body[b-npinp4v6wp] {
.login-container

{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.login-box[b-npinp4v6wp] {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.password-toggle[b-npinp4v6wp] {
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

    .password-toggle:hover[b-npinp4v6wp] {
        background-color: #e9ecef;
    }

.divider[b-npinp4v6wp] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
}

    .divider[b-npinp4v6wp]::before,
    .divider[b-npinp4v6wp]::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #dee2e6;
    }

    .divider span[b-npinp4v6wp] {
        padding: 0 1rem;
    }

.btn[b-npinp4v6wp] {
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary[b-npinp4v6wp] {
    background-color: #4361ee;
    border-color: #4361ee;
}

    .btn-primary:hover[b-npinp4v6wp] {
        background-color: #3a56d4;
        border-color: #3a56d4;
        transform: translateY(-2px);
    }


}
/* /Pages/Tests/AppointmentHistoryTable.razor.rz.scp.css */
.appointment-history-container[b-itbsrcn1su] {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.appointment-history-container h3[b-itbsrcn1su] {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Loading State */
.loading[b-itbsrcn1su] {
    text-align: center;
    padding: 60px 20px;
}

.spinner[b-itbsrcn1su] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-itbsrcn1su 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin-b-itbsrcn1su {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Data State */
.no-data[b-itbsrcn1su] {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
}

/* Table Styles */
.table-responsive[b-itbsrcn1su] {
    overflow-x: auto;
}

.history-table[b-itbsrcn1su] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.history-table thead[b-itbsrcn1su] {
    background: #f8f9fa;
}

.history-table th[b-itbsrcn1su] {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #dee2e6;
}

.history-table td[b-itbsrcn1su] {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.history-row[b-itbsrcn1su] {
    transition: background-color 0.2s;
}

.history-row:hover[b-itbsrcn1su] {
    background-color: #f8f9fa;
}

/* Row Colors by Type */
.row-created[b-itbsrcn1su] {
    border-left: 4px solid #28a745;
}

.row-updated[b-itbsrcn1su] {
    border-left: 4px solid #007bff;
}

.row-deleted[b-itbsrcn1su] {
    border-left: 4px solid #dc3545;
}

.row-approved[b-itbsrcn1su] {
    border-left: 4px solid #28a745;
}

.row-rejected[b-itbsrcn1su] {
    border-left: 4px solid #ffc107;
}

/* Cell Styles */
.date-cell[b-itbsrcn1su] {
    white-space: nowrap;
    color: #666;
    min-width: 130px;
}

.action-cell[b-itbsrcn1su] {
    min-width: 100px;
}

.user-cell[b-itbsrcn1su] {
    color: #333;
    font-weight: 500;
    min-width: 150px;
}

.changes-cell[b-itbsrcn1su] {
    min-width: 300px;
}

/* Badges */
.badge[b-itbsrcn1su] {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-created[b-itbsrcn1su] {
    background: #d4edda;
    color: #155724;
}

.badge-updated[b-itbsrcn1su] {
    background: #cce5ff;
    color: #004085;
}

.badge-deleted[b-itbsrcn1su] {
    background: #f8d7da;
    color: #721c24;
}

.badge-approved[b-itbsrcn1su] {
    background: #d4edda;
    color: #155724;
}

.badge-rejected[b-itbsrcn1su] {
    background: #fff3cd;
    color: #856404;
}

.badge-default[b-itbsrcn1su] {
    background: #e9ecef;
    color: #495057;
}

/* Changes Details */
.changes-details[b-itbsrcn1su] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.change-item[b-itbsrcn1su] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.change-item strong[b-itbsrcn1su] {
    color: #555;
    min-width: 100px;
}

.old-value[b-itbsrcn1su] {
    color: #dc3545;
    text-decoration: line-through;
    padding: 2px 8px;
    background: #f8d7da;
    border-radius: 4px;
}

.new-value[b-itbsrcn1su] {
    color: #28a745;
    font-weight: 600;
    padding: 2px 8px;
    background: #d4edda;
    border-radius: 4px;
}

.arrow[b-itbsrcn1su] {
    color: #999;
    font-weight: bold;
}

.status-badge[b-itbsrcn1su] {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending[b-itbsrcn1su] {
    background: #fff3cd;
    color: #856404;
}

.status-approved[b-itbsrcn1su] {
    background: #d4edda;
    color: #155724;
}

.status-rejected[b-itbsrcn1su] {
    background: #f8d7da;
    color: #721c24;
}

.status-canceled[b-itbsrcn1su] {
    background: #e9ecef;
    color: #495057;
}

.description-change[b-itbsrcn1su] {
    font-style: italic;
    color: #666;
}

.no-details[b-itbsrcn1su] {
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-history-container[b-itbsrcn1su] {
        padding: 15px;
    }
    
    .history-table[b-itbsrcn1su] {
        font-size: 0.85rem;
    }
    
    .history-table th[b-itbsrcn1su],
    .history-table td[b-itbsrcn1su] {
        padding: 8px;
    }
    
    .change-item[b-itbsrcn1su] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .change-item strong[b-itbsrcn1su] {
        min-width: auto;
    }
    
    /* Stack table on mobile */
    .history-table thead[b-itbsrcn1su] {
        display: none;
    }
    
    .history-table[b-itbsrcn1su],
    .history-table tbody[b-itbsrcn1su],
    .history-table tr[b-itbsrcn1su],
    .history-table td[b-itbsrcn1su] {
        display: block;
        width: 100%;
    }
    
    .history-table tr[b-itbsrcn1su] {
        margin-bottom: 20px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 10px;
    }
    
    .history-table td[b-itbsrcn1su] {
        border: none;
        padding: 8px 0;
        position: relative;
    }
    
    .history-table td[b-itbsrcn1su]::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        color: #555;
    }
    
    .date-cell[b-itbsrcn1su]::before { content: "Datum/Zeit:"; }
    .action-cell[b-itbsrcn1su]::before { content: "Aktion:"; }
    .user-cell[b-itbsrcn1su]::before { content: "Geändert von:"; }
    .changes-cell[b-itbsrcn1su]::before { content: "Änderungen:"; }
}
