.select2-container {
    margin-bottom: 20px;
}
.joywing-delivery-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.joywing-delivery-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.delivery-form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: bold;
}

.delivery-form input,
.delivery-form select,
.delivery-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.delivery-form input[type="number"],
.delivery-form input[type="text"],
.delivery-form select {
    box-sizing: border-box;
}

.delivery-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.delivery-form button:hover {
    background-color: #45a049;
}

#response-message {
    text-align: center;
    margin-top: 20px;
}