/* Inputs & Textareas */
input[type="text"], input[type="file"], textarea {
    border: 1px solid #888;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.95em;
    background-color: #fdfdfd;
    width: 100%;
    box-sizing: border-box;
}

/* Hide default file input */
input[type="file"] {
    display: none;
}

/* Custom file button */
.custom-file-label {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95em;
}

/* File name display */
.custom-file-name {
    margin-left: 10px;
    font-size: 0.9em;
    color: #333;
}

/* Submit buttons */
button, input[type="submit"] {
    background-color: #4a90e2;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover, input[type="submit"]:hover {
    background-color: #357ABD;
}
