body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-light-50:hover {
    color: #ffffff !important;
}

.card {
    border-radius: 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04) !important;
}

/* Status colors and badges */
.badge-status-passed {
    background-color: #198754;
    color: #ffffff;
}

.badge-status-failed {
    background-color: #dc3545;
    color: #ffffff;
}

.badge-status-skipped {
    background-color: #6c757d;
    color: #ffffff;
}

.badge-status-notexecuted {
    background-color: #e9ecef;
    color: #495057;
}

/* Plan tree style */
.plan-tree-item {
    transition: background-color 0.15s ease-in-out;
}

.plan-tree-item:hover {
    background-color: rgba(13, 110, 253, 0.04);
}

/* Quill WYSIWYG editor container */
.ql-container {
    font-family: inherit;
    font-size: 0.95rem;
    min-height: 120px;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.ql-toolbar {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background-color: #f8f9fa;
}

/* Execution card states */
.execution-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.execution-card.state-passed {
    border-left: 5px solid #198754 !important;
}

.execution-card.state-failed {
    border-left: 5px solid #dc3545 !important;
}

.execution-card.state-skipped {
    border-left: 5px solid #6c757d !important;
}

.execution-card.state-notexecuted {
    border-left: 5px solid #ced4da !important;
}
