/* Form Styles */
#add-cvtheque-page .form-label {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    padding-bottom: 5px;
}
#add-cvtheque-page .form-label .required {
    color: var(--brand-red);
    font-weight: 700;
}
#add-cvtheque-page .form-control, #add-cvtheque-page .form-select {
    border: 1px solid #00000033;
    border-radius: 10px;
    height: 50px;
}
 #add-cvtheque-page textarea{
    border: 1px solid #00000033;
    border-radius: 10px;
       min-height: 120px;


}
#add-cvtheque-page .form-control:focus, #add-cvtheque-page .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
#add-cvtheque-page .form-control::placeholder {
    color: #adb5bd;
}

/* File Upload Styling */
.file-upload-wrapper {
    margin-bottom: 1rem;
}

.file-upload-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.file-upload-label:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.file-info .file-name {
    font-weight: 500;
    color: #212529;
}

.upload-icon {
    color: #6c757d;
}

/* Date Input with Icon */
.date-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

/* Remove default arrow from date inputs in Webkit browsers */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}