/* Numerology Items */
.js-numerology-item {
    @apply cursor-pointer transition-all duration-200;
}

.js-numerology-item:hover {
    @apply transform scale-105;
}

.js-numerology-title {
    @apply font-semibold text-gray-700;
}

.js-numerology-value {
    @apply text-2xl font-bold text-indigo-600;
}

/* Tooltip */
#numerology-tooltip {
    @apply pointer-events-none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#numerology-tooltip::before {
    content: '';
    @apply absolute -top-1 left-1/2 transform -translate-x-1/2;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #1f2937;
}

/* Sticky Footer */
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}

/* Modern Card Form */
.numerology-form-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 32rem;
    transition: box-shadow 0.2s;
}
.numerology-form-card:focus-within, .numerology-form-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
}

.numerology-form-card input, .numerology-form-card select {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.numerology-form-card input:focus, .numerology-form-card select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px #6366f133;
    outline: none;
}

/* Improved Dropdown */
.styled-dropdown {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 1rem;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%236366f1" stroke-width="2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25em;
    transition: border-color 0.2s;
}
.styled-dropdown:focus {
    border-color: #6366f1;
}

/* Improved Buttons */
.styled-btn {
    background: linear-gradient(90deg, #6366f1 0%, #4338ca 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    cursor: pointer;
}
.styled-btn:hover, .styled-btn:focus {
    background: linear-gradient(90deg, #4338ca 0%, #6366f1 100%);
    box-shadow: 0 4px 16px 0 rgba(99, 102, 241, 0.12);
    transform: translateY(-2px) scale(1.03);
}
.styled-btn:active {
    transform: scale(0.98);
} 