/* Minimal Tailwind Simulation for Dark Theme */
:root {
    --bg-dark: #0f0f14;
    --text-light: #f3f4f6;
    --accent-pink: #f43f5e;
    --accent-hover: #e11d48;
    --surface: #1f2937;
}

.aq-container {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 2rem;
    border-radius: 0.5rem;
}

.aq-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.aq-card {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
}

.aq-btn {
    background-color: var(--accent-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.aq-btn:hover {
    background-color: var(--accent-hover);
}

.aq-form-group {
    margin-bottom: 1rem;
}

.aq-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.aq-input {
    width: 100%;
    padding: 0.5rem;
    background-color: #374151;
    border: 1px solid #4b5563;
    color: white;
    border-radius: 0.375rem;
}