/* Linkpartner Verwaltung - Admin Styles */
body {
    font-size: 0.9rem;
}

.sidebar {
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.sidebar .nav-link {
    color: #333;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 0.25rem;
}

.sidebar .nav-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    padding: 0.75rem 1rem 0.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.content-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.table th {
    font-size: 0.85rem;
    white-space: nowrap;
}

.lock-bar {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
}

@media (max-width: 767.98px) {
    .sidebar {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        width: 220px;
        z-index: 1050;
        height: calc(100vh - 56px);
        overflow-y: auto;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    .sidebar.show {
        display: block;
    }
    main {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
