/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Author: Grok
 Description: Child theme for Hello Elementor customized for TraDiaChi
 Version: 1.0
 Text Domain: hello-elementor-child
*/

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
}

#tradiachi-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

#tradiachi-form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    font-size: 16px;
}

#tradiachi-form button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #1a73e8;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

#tradiachi-form button:hover {
    background-color: #1557b0;
}

#tradiachi-result {
    margin-top: 20px;
    text-align: center;
}

.select2-container {
    width: 100% !important;
}

.select2-selection {
    border-radius: 24px !important;
    border: 1px solid #dfe1e5 !important;
    height: 44px !important;
    padding: 10px !important;
}

.tradiachi-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.bg-card {
    background-color: #ffffff;
    border-color: #e5e7eb;
}

.text-card-foreground {
    color: #111827;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border {
    border-width: 1px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid-cols-1.md\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-1.md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-4 {
    gap: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-700 {
    color: #374151;
}

.w-full {
    width: 100%;
}

.h-9 {
    height: 2.25rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.hover\:border-blue-600:hover {
    border-color: #2563eb;
}