/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 03 2026 | 17:05:24 */
/* ===== File Input Styling ===== */
.appointment-form input[type="file"] {
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    border-radius: 40px;
    background-color: #ffffff;
    border: none;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Style the button inside file input */
.appointment-form input[type="file"]::file-selector-button {
    height: 40px;
    border: none;
    border-radius: 25px;
    background-color: #e6e6e6;
    padding: 0 15px;
    margin-right: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Hover effect */
.appointment-form input[type="file"]::file-selector-button:hover {
    background-color: #d5d5d5;
}

/* For older browsers */
.appointment-form input[type="file"]::-webkit-file-upload-button {
    height: 40px;
    border: none;
    border-radius: 25px;
    background-color: #e6e6e6;
    padding: 0 15px;
    margin-right: 15px;
    cursor: pointer;
}