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

/* Form elemanları için özel stiller */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Checkbox için özel stiller */
.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid #e2e8f0;
    transition: all 0.2s;
}

.form-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Focus ring stilleri */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* Geçiş animasyonları */
.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
} 