#custom-service-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
}

#custom-service-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

#custom-service-form input,
#custom-service-form textarea,
#custom-service-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#custom-service-form input[type="submit"] {
    margin-top: 20px;
    background: #0073aa;
    color: white;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

#custom-service-form input[type="submit"]:hover {
    background: #005177;
}

.notice {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.success-message {
    padding: 10px;
    background: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    margin-bottom: 20px;
}
