/* Bento Theme */
:root {
    --bg-color: #f0f2f5;
    --text-color: #333333;
    --accent-color: #007aff;
    --border-style: none;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.tag {
    background: #e4e6eb;
    color: #050505;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* UI Kit */
input,
select {
    background: #f0f2f5;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
}

.btn {
    background: #e4e6eb;
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}