form:hover {
    border: 0px solid #f5f5f5;
}

.modal-header {
    justify-content: center;
}

.custom-select-box {
    position: relative;
    width: 100%;
}

.select-display {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 12px;
    background: #f1f1f1;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: right;
    margin-bottom: 30px;
}

.select-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 5000;
}

.select-item {
    padding: 7px 10px;
    cursor: pointer;
    font-size: 1.3rem;
    text-align: right;
}

.select-item:hover {
    background: #f0f0f0;
}

.group-title {
    padding: 8px 14px;
    font-weight: bold;
    font-size: 1.15rem;
}

.group-title.car {
    background: #e0f0ff;
    color: #003c80;
}

.group-title.moto {
    background: #ffe7e7;
    color: #b30017;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
    font-size: 30px;
    vertical-align: middle;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: #222;
    text-decoration: none;
}

.d-block {
    display: block !important;
}

.d-md-none {
    @media (min-width: 992px) {
        display: none !important;
    }
}

.d-none {
    display: none !important;
}

.d-md-block {
    @media (min-width: 992px) {
        display: block !important;
    }
}