@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

/* Form styles */
select, input, textarea {
    transition: all 0.2s ease;
}

select:focus, input:focus, textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

button {
    transition: all 0.2s ease;
}
button:hover {
    transform: translateY(-1px);
}

/* Modal styles for fallback copy */
.modal-text {
    white-space: pre-wrap;
    font-family: monospace;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 0.5rem;
    max-height: 60vh;
    overflow: auto;
}
/* Checklist styles */
.checklist {
    margin: 1rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.checklist-item input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    accent-color: #3b82f6;
}

.checklist-item label {
    flex: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}