/* Custom minimal form styles */
.form-input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #a8a29e;
    /* stone-400 */
    padding: 0.5rem 0;
    width: 100%;
    transition: border-color 0.2s;
    border-radius: 0;
    /* Ensures retro feel */
}

.form-input:focus {
    outline: none;
    border-color: #292524;
    /* stone-800 */
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23a8a29e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Custom File Input */
.form-file-input {
    border: 2px dashed #a8a29e;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.form-file-input:hover {
    border-color: #292524;
    background-color: #f5f5f4;
    /* stone-100 */
}

.form-file-input span {
    color: #57534e;
    /* stone-600 */
    font-weight: 500;
}

.form-file-input.has-file {
    border-style: solid;
    border-color: #166534;
    /* green-800 */
    background-color: #f0fdf4;
    /* green-50 */
}

.form-file-input.has-file span {
    color: #166534;
    /* green-800 */
}
