/* assets/css/numerology-analyzer.css */
.numerology-analyzer-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.numerology-header {
    text-align: center;
    margin-bottom: 30px;
}

.numerology-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.numerology-form-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-actions {
    text-align: center;
    margin-top: 25px;
}

.analyze-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.analyze-button:hover {
    background-color: #2980b9;
}

/* Results styles */
.numerology-results {
    margin-top: 30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.results-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.results-header h3 {
    color: #2c3e50;
    font-size: 22px;
}

.numerology-summary {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.summary-item {
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    background-color: #f4f7f9;
    width: 45%;
}

.summary-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #7f8c8d;
}

.summary-value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.numerology-interpretation {
    margin-bottom: 30px;
    background-color: #edf7ff;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.numerology-interpretation h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.letter-breakdown {
    margin-bottom: 30px;
}

.letter-breakdown h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.breakdown-table table {
    width: 100%;
    border-collapse: collapse;
}

.breakdown-table th,
.breakdown-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.breakdown-table th {
    background-color: #f4f7f9;
    font-weight: 600;
    color: #2c3e50;
}

.breakdown-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.secondary-button {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #dde4e6;
}

/* Loading indicator */
.loading-indicator {
    text-align: center;
    padding: 30px;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .numerology-analyzer-container {
        padding: 20px 15px;
    }
    
    .numerology-summary {
        flex-direction: column;
    }
    
    .summary-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .secondary-button {
        width: 100%;
    }
}
