/* NVD Status Progress Bar Styles */
.nvd-status-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.nvd-status-item {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.nvd-status-item.active {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-width: 3px;
    font-weight: bold;
}

.nvd-status-item.active.bg-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000;
}

.nvd-status-item.active.bg-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.nvd-status-item.active.bg-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.nvd-status-item.active.bg-success {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.nvd-status-item.active.bg-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.nvd-status-item.active.bg-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000;
}

.nvd-status-item.active.bg-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.nvd-status-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
    word-wrap: break-word;
    line-height: 1.2;
}

.nvd-status-item.active .nvd-status-name {
    font-size: 1rem;
}

.nvd-status-description {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 8px;
    line-height: 1.3;
}

.nvd-status-item.active .nvd-status-description {
    opacity: 1;
    font-weight: normal;
}

@media (max-width: 768px) {
    .nvd-status-progress {
        flex-direction: column;
        gap: 8px;
    }
    
    .nvd-status-item {
        min-width: 100%;
    }
}
