/* Custom CSS for Lotea */

/* Enhanced focus states for form inputs */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Error state styling */
input.border-red-500:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading spinner for HTMX requests */
.htmx-loading .htmx-indicator {
    display: inline-block !important;
}

.htmx-loading .submit-text {
    display: none;
}

/* Button disabled state during HTMX request */
.htmx-request button[type="submit"] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.2s ease-in-out;
}

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

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

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

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