
.motorcycle-customizer {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    max-width: 600px;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.motorcycle-customizer h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.motorcycle-customizer label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.motorcycle-customizer input[type="text"],
.motorcycle-customizer select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.motorcycle-customizer .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.motorcycle-customizer .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: normal;
    flex: 1 1 45%;
}

.motorcycle-customizer input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.motorcycle-customizer input[type="submit"]:hover {
    background-color: #005f8d;
}

#motorcycle-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#motorcycle-modal img {
    max-width: 90%;
    max-height: 90%;
}
#motorcycle-modal-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


.motorcycle-customizer .checkbox-group label {
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 45%;
    font-size: 14px;
}

.motorcycle-customizer .checkbox-group label::before {
    content: "\2713";
    font-family: Arial, sans-serif;
    color: #0073aa;
    font-weight: bold;
}

.checkbox-section h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

#motorcycle-result img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}
