/**
 * AI Report Page Styles
 */

.report-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.report-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.report-header h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.header-spacer {
    width: 80px;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Status Section */
.report-status-section {
    margin-bottom: 30px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 25px;
}

.status-icon {
    font-size: 48px;
}

.status-info {
    flex: 1;
}

.status-info h2 {
    font-size: 20px;
    margin: 0 0 5px;
}

.status-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.btn-generate {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.btn-generate:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-generate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Requirements */
.requirements-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.requirements-card h3 {
    font-size: 16px;
    margin: 0 0 15px;
}

.req-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.req-icon {
    font-size: 18px;
}

.req-item span:nth-child(2) {
    flex: 1;
    font-size: 14px;
}

.req-progress {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* Report Content */
.report-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.report-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-date,
.report-week {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.report-article {
    line-height: 1.8;
    font-size: 15px;
}

.report-article h1 {
    font-size: 24px;
    margin: 30px 0 15px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.report-article h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #fff;
}

.report-article h3 {
    font-size: 17px;
    margin: 20px 0 10px;
    color: rgba(255, 255, 255, 0.9);
}

.report-article strong {
    color: #a855f7;
}

.report-article em {
    color: rgba(255, 255, 255, 0.8);
}

/* Previous Reports */
.previous-reports {
    margin-top: 30px;
}

.previous-reports h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-list-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-list-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.report-list-date {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.report-list-summary {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .status-card {
        flex-direction: column;
        text-align: center;
    }

    .btn-generate {
        width: 100%;
    }
}