:root {
    --albatros-blue: #1a5276;
    --albatros-light: #aed6f1;
    --albatros-accent: #1565a7;
}

/* Navbar */
.bg-albatros {
    background-color: var(--albatros-blue) !important;
}

/* Main content */
.main-content {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page header */
.page-header {
    border-bottom: 3px solid var(--albatros-blue);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    color: var(--albatros-blue);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

/* Cards */
.card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.card-header-albatros {
    background-color: var(--albatros-blue);
    color: white;
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

/* Status badges */
.badge-geplant    { background-color: #f39c12; color: white; }
.badge-abgeschlossen { background-color: #27ae60; color: white; }
.badge-abgesagt   { background-color: #e74c3c; color: white; }
.badge-offen      { background-color: #f39c12; color: white; }
.badge-erledigt   { background-color: #27ae60; color: white; }

/* Tables */
.table-albatros thead th {
    background-color: #f8f9fa;
    color: #555;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}

.table-albatros tbody tr:hover {
    background-color: #f0f6fc;
    cursor: pointer;
}

/* Buttons */
.btn-albatros {
    background-color: var(--albatros-blue);
    color: white;
    border: none;
}
.btn-albatros:hover {
    background-color: var(--albatros-accent);
    color: white;
}

/* Filter bar */
.filter-bar {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--albatros-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--albatros-blue);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background-color: #dee2e6;
    margin-top: 4px;
}

.timeline-content {
    flex: 1;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.timeline-date {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.timeline-title {
    color: var(--albatros-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* OKR progress */
.okr-card {
    margin-bottom: 2rem;
}

.okr-progress-bar {
    height: 18px;
    border-radius: 9px;
}

/* Login page */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--albatros-blue) 0%, var(--albatros-accent) 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Visibility checkboxes */
.visibility-control {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
}

/* File list */
.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.file-item:last-child { border-bottom: none; }
.file-item .bi { color: var(--albatros-blue); }

/* Responsive adjustments */
@media (max-width: 576px) {
    .main-content {
        padding: 0.75rem;
    }
    .timeline-marker { display: none; }
    .table-responsive { font-size: 0.85rem; }
}

/* Alert autohide */
.alert-autohide {
    animation: fadeOut 0.5s ease 3s forwards;
}
@keyframes fadeOut {
    to { opacity: 0; height: 0; padding: 0; margin: 0; overflow: hidden; }
}
