input[type="file"] {
    display: none;
    /* Hide the default file input */
}

.custom-file-input {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    color: #c24b23;
    border: 1px solid #c24b23;
}

.custom-file-input:hover {
    background-color: #c24b23;
    color: white;
}