body {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hs-tab {
    position: relative;
    transition: all 0.2s ease;
    color: #64748b;
    font-weight: 500;
    padding-bottom: 12px;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

/* Grøn aktiv fane */
.hs-tab.active {
    color: #0f172a;
    font-weight: 700;
    border-bottom: 3px solid #10b981;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-line {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

#app-content {
    display: none;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.alert-emerald {
    background-color: #ecfdf5;
    color: #10b981;
    border: 1px solid #10b981;
}

.alert-amber {
    background-color: #fffbeb;
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.alert-rose {
    background-color: #fff1f2;
    color: #e11d48;
    border: 1px solid #e11d48;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-ok {
    background-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.status-obs {
    background-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.status-fejl {
    background-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
}

/* Kanban Drag & Drop */
.kanban-ghost {
    opacity: 0.4;
    background-color: #f1f5f9;
    border: 2px dashed #10b981;
}