.sekaVar-container {
    display: flex;
    flex-direction: column;
}

.sekaVar-event-card {
    background: var(--bg-panel, #1a1a2e);
    border: 1px solid var(--line, #2d2d44);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.sekaVar-event-card:hover {
    border-color: var(--accent, #ffc107);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.1);
}

.sekaVar-event-card.sekaVar-predicted {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0.02) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.sekaVar-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.sekaVar-event-title h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light, #ffffff);
}

.sekaVar-event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted, #999);
    margin-top: 0.5rem;
}

.sekaVar-event-date i {
    font-size: 0.75rem;
}

.sekaVar-predicted-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.sekaVar-predicted-badge i {
    font-size: 1rem;
}

.sekaVar-event-description {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-light, #e0e0e0);
    line-height: 1.5;
}

.sekaVar-question-section {
    margin-top: 1rem;
}

.sekaVar-question-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light, #ffffff);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sekaVar-question-text i {
    color: var(--accent, #ffc107);
    flex-shrink: 0;
    font-size: 1rem;
}

.sekaVar-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.sekaVar-option-btn {
    background: var(--bg-input, #2d2d44);
    border: 2px solid var(--line, #3d3d54);
    color: var(--text-light, #ffffff);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.sekaVar-option-btn:hover {
    border-color: var(--accent, #ffc107);
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent, #ffc107);
}

.sekaVar-option-btn:active {
    transform: scale(0.98);
}

.sekaVar-option-btn.selected {
    background: var(--accent, #ffc107);
    border-color: var(--accent, #ffc107);
    color: #000;
}

.sekaVar-user-answer {
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4caf50;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-top: 1rem;
}

.sekaVar-answer-label {
    font-size: 0.875rem;
    color: var(--text-muted, #999);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.sekaVar-answer-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4caf50;
}

.sekaVar-not-eligible {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(244, 67, 54, 0.1);
    border-left: 3px solid #f44336;
    padding: 1rem;
    border-radius: 0.25rem;
    color: #f44336;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.sekaVar-not-eligible i {
    font-size: 1.25rem;
}

.sekaVar-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.sekaVar-empty-icon {
    font-size: 3rem;
    color: var(--accent, #ffc107);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.sekaVar-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light, #ffffff);
    margin-bottom: 0.5rem;
}

.sekaVar-empty-text {
    font-size: 0.9375rem;
    color: var(--text-muted, #999);
    line-height: 1.6;
}

.sekaVar-save-btn {
    background: var(--accent, #ffc107);
    border: none;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sekaVar-save-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.sekaVar-save-btn:active {
    transform: translateY(0);
}

.sekaVar-save-btn i {
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .sekaVar-event-card {
        padding: 1rem;
    }

    .sekaVar-event-header {
        flex-direction: column;
    }

    .sekaVar-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .sekaVar-option-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }

    .sekaVar-actions {
        flex-direction: column;
    }

    .sekaVar-save-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sekaVar-container {
        gap: 1rem;
    }

    .sekaVar-event-card {
        padding: 0.75rem;
    }

    .sekaVar-event-title h5 {
        font-size: 1.125rem;
    }

    .sekaVar-question-text {
        font-size: 0.9375rem;
    }

    .sekaVar-options {
        grid-template-columns: 1fr;
    }

    .sekaVar-empty {
        padding: 2rem 0.5rem;
    }

    .sekaVar-empty-icon {
        font-size: 2.5rem;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sekaVar-event-card {
    animation: slideIn 0.3s ease;
}

.sekaVar-alert {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sekaVar-alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: currentColor;
}

.sekaVar-alert.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-color: rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.sekaVar-alert.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.08) 100%);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
}

.sekaVar-alert.alert-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(244, 67, 54, 0.08) 100%);
    border-color: rgba(244, 67, 54, 0.4);
    color: #f44336;
}

.sekaVar-alert i {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    animation: iconPulse 0.6s ease-out;
}

.sekaVar-alert span {
    flex: 1;
    line-height: 1.6;
}

.sekaVar-alert .close {
    background: transparent;
    border: none;
    color: currentColor;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.sekaVar-alert .close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.15);
    transform: rotate(90deg) scale(1.1);
}

.sekaVar-alert .close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.sekaVar-alert .close:active {
    transform: rotate(90deg) scale(0.95);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.sekaVar-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    align-items: center;
}

@media (prefers-color-scheme: dark) {
    .sekaVar-event-card {
        background: #1a1a2e;
        border-color: #2d2d44;
    }

    .sekaVar-option-btn {
        background: #2d2d44;
        border-color: #3d3d54;
        color: #ffffff;
    }

    .sekaVar-option-btn:hover {
        background: rgba(255, 193, 7, 0.1);
    }
}
