.upf-edit-vehicle-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.upf-edit-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.upf-edit-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 100px auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.upf-edit-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upf-edit-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.upf-edit-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: #999;
}

.upf-edit-modal-body {
    padding: 20px;
}

.upf-form-group {
    margin-bottom: 15px;
}

.upf-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.upf-form-group input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.upf-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.upf-default-badge {
    background-color: #4CAF50;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

.upf-default-vehicle {
    border-color: #4CAF50;
    box-shadow: 0 0 0 1px #4CAF50;
}