/* Jodiac AI Page Styles */

.jodiac-ai-page {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.jodiac-ai-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Chart Selection Section */
.chart-selection-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chart-selection-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.chart-selector-container {
    margin-top: 1.5rem;
    min-height: 200px;
}

/* Charts Grid Selector */
.charts-grid-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.chart-card-select {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-card-select:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-card-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.chart-badge {
    font-size: 1.5rem;
}

.chart-card-body {
    flex-grow: 1;
}

.chart-date {
    color: #666;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.chart-location {
    color: #999;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.chart-card-footer {
    margin-top: auto;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* No Charts Message */
.no-charts-message {
    margin-top: 2rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* AI Interpretation Section */
.ai-interpretation-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

#jodiac-ai-content {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .jodiac-ai-page {
        padding: 1rem;
    }
    
    .chart-selection-section,
    .ai-interpretation-section {
        padding: 1.5rem;
    }
    
    .charts-grid-selector {
        grid-template-columns: 1fr;
    }
}

