/* 漏洞回報頁面樣式 */

.bug-report-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
}

.bug-report-hero h1 {
    font-weight: 700;
}

.bug-report-hero .btn-primary {
    background: white;
    border-color: white;
    color: #667eea;
    font-weight: 600;
}

.bug-report-hero .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.bug-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bug-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bug-id {
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

.recent-reports h3 {
    font-weight: 600;
    color: #333;
}

.empty-state {
    color: #adb5bd;
}

.empty-state i {
    opacity: 0.5;
}

/* 表單樣式 */
.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* 響應式 */
@media (max-width: 768px) {
    .bug-report-hero {
        padding: 2rem 1rem !important;
    }
    
    .bug-report-hero h1 {
        font-size: 2rem;
    }
}