.ai-summary-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #ff6b9d;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Paragraph styling with proper text color */
.summary-paragraph {
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #f0f0f0; /* Light text on dark background */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Highlighted Key Insights */
.highlight {
    background: linear-gradient(120deg, #ff6b9d 0%, #c084fc 100%);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

/* Astrological Terms */
.astro-term {
    color: #c084fc;
    font-weight: 600;
    font-style: italic;
    border-bottom: 2px dotted #9d4edd;
    padding-bottom: 1px;
}

/* Warning/Challenge Text */
.warning {
    color: #fbbf24;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
    border-left: 3px solid #fbbf24;
}

/* Strength/Gift Text */
.strength {
    color: #34d399;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
    border-left: 3px solid #34d399;
}

/* Strong Emphasis */
.summary-paragraph strong {
    color: #ff6b9d;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ai-summary-container {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .summary-paragraph {
        font-size: 17px;
        line-height: 1.7;
    }
}

/* Optional: Subtle animation on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-summary-container {
    animation: fadeIn 0.6s ease-out;
}

#reportModal .modal-dialog {
    max-width: 100vw !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
}

#reportModal .modal-content {
    height: 100vh !important;
    border: 0 !important;
    border-radius: 0 !important;
}

#reportModal .modal-body {
    overflow-y: auto !important;
}

}
