/* WealthForge Custom Styles */
:root {
    --primary-color: #facc15; /* yellow-400 */
    --secondary-bg: #111827; /* gray-900 */
    --input-bg: #1f293b; /* gray-800 */
    --border-color: #374151; /* gray-700 */
    --text-color: #f9fafb; /* gray-50 */
    --text-muted: #9ca3af; /* gray-400 */
}

body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    background-color: var(--secondary-bg);
    color: var(--text-color);
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

section {
    scroll-margin-top: 4rem;
}

a {
    transition: color 0.2s ease;
}

button {
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Admin Table Styles */
table {
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    border-bottom: 1px solid var(--border-color);
}

th:first-child {
    border-top-left-radius: 0.5rem;
}

th:last-child {
    border-top-right-radius: 0.5rem;
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 640px) {
    nav a {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(28px, 5vw, 32px);
    }

    h2 {
        font-size: clamp(20px, 4vw, 24px);
    }

    table {
        font-size: 12px;
    }
}