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

/* Custom style for file input */
.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    border: 2px dashed #d1d5db;
    /* gray-300 */
    border-radius: 0.5rem;
    /* rounded-lg */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.file-input-label:hover {
    background-color: #f9fafb;
    /* gray-50 */
    border-color: #3b82f6;
    /* blue-500 */
}

