/* App-spezifische Styles für Arbeitszeiterfassung */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Zeiterfassung Buttons */
.btn-lg {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

/* Card Verbesserungen */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

/* Tabelle Scrollbar */
.table-responsive {
    max-height: 400px;
    overflow-y: auto;
}

/* Laufende Zeit Highlight */
#laufendeZeit {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd;
}

/* QR Code Styling */
.qr-code-container {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

/* Mini-Navigation */
.mini-navbar {
    background: #0d6efd;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mini-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.mini-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mini-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: white;
}

.mini-nav-item.active {
    background: rgba(255, 255, 255, 0.3);
}

.mini-nav-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.mini-nav-spacer {
    flex: 1;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .btn-lg {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }
    
    .card-body table {
        font-size: 0.9rem;
    }
    
    .mini-nav {
        gap: 0.25rem;
        padding: 0 0.5rem;
    }
    
    .mini-nav-item {
        width: 40px;
        height: 40px;
    }
    
    .mini-nav-icon {
        font-size: 1.25rem;
    }
}

