/* Custom component classes (plain CSS — Tailwind utilities come from Play CDN) */

.btn-primary {
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.btn-primary:hover { background-color: #1d4ed8; }

.btn-secondary {
    padding: 0.5rem 1rem;
    background-color: #e5e7eb;
    color: #1f2937;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.btn-secondary:hover { background-color: #d1d5db; }

.input-base {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    background-color: #ffffff;
}
.input-base:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    padding: 1rem;
}

.page { display: none; }
.page.active { display: block; }
