.driver-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.driver-modal-overlay.active {
    display: flex;
}

.driver-modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.driver-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}


.quform-input select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;

    padding-right: 45px;
    cursor: pointer;
}


/* COMPANY MODAL */

.company-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.company-modal-overlay.active {
    display: flex;
}

.company-modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.company-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

/* Select Arrow Styling */

.quform-input select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;

    padding-right: 45px;
    cursor: pointer;
}

/* Textarea Styling */

.company-modal-content textarea.form-control {
    resize: vertical;
    min-height: 120px;
}