/* NeoName V2 Styles */
.neoname-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Noto Serif', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.neoname-container h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.neoname-container h3 {
    font-size: 1.4rem;
    color: #374151;
    margin: 1.5rem 0 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.neoname-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #3b82f6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.neoname-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.neoname-button:active {
    transform: translateY(0);
}

#neoname-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
}

#neoname-message.error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #f87171;
}

#neoname-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.neoname-result-section {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.numerology-result {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 6px;
}

.numerology-result strong {
    color: #1f2937;
    font-weight: 600;
}

.numerology-result em {
    display: block;
    color: #4b5563;
    font-style: normal;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .neoname-container {
        padding: 15px;
    }

    .neoname-container h2 {
        font-size: 1.5rem;
    }

    .neoname-container h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    .neoname-button {
        width: 100%;
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .neoname-container {
        padding: 10px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .numerology-result {
        padding: 0.8rem;
    }
}