/* Hindi Language Specific Styles */
body {
    font-family: 'Arial', 'Nirmala UI', 'Mangal', sans-serif;
    line-height: 1.8;
}

.hindi-font {
    font-family: 'Nirmala UI', 'Mangal', 'Arial Unicode MS', sans-serif;
}

/* Calculator Specific Styles */
.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #856404;
    font-size: 0.9rem;
}

.important-note {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 1rem;
    margin-top: 1rem;
    color: #155724;
    font-size: 0.9rem;
}

.calculator-info,
.numerology-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
    border-left: 4px solid #3498db;
}

.calculator-info h4,
.numerology-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.numerology-info h5 {
    color: #34495e;
    margin: 1rem 0 0.5rem 0;
}

.numerology-info ul {
    list-style: none;
    padding-left: 0;
}

.numerology-info li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #e9ecef;
}

/* Suggested Numbers Grid */
.suggested-numbers {
    margin-top: 2rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.number-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid #3498db;
}

.number-card .number {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.number-card .number-meaning {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.meaning {
    font-size: 1.1rem;
    color: #e67e22;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Responsive Design for Hindi Text */
@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .number-card .number {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .disclaimer, .important-note {
        background: white;
        border: 2px solid #000;
    }
}