#mawHypnoForm {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.form-section {
    margin-bottom: 20px;
}
.form-section h3 {
    margin: 10px 0;
    color: #333;
}
.toggle-section {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 4px;
}
.toggle-icon {
    font-size: 18px;
}
.section-content {
    padding: 10px;
}
#mawHypnoForm label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
#mawHypnoForm input[type="text"],
#mawHypnoForm input[type="email"],
#mawHypnoForm input[type="date"],
#mawHypnoForm textarea,
#mawHypnoForm select {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#mawHypnoForm textarea {
    height: 100px;
}
.submit-button {
    padding: 15px 30px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
}
.submit-button:hover {
    background: #005177;
}
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.severity-button,
.mental-health-button,
.phobia-button,
.sexual-preference-button {
    padding: 8px 12px;
    background: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.severity-button.selected,
.mental-health-button.selected,
.phobia-button.selected,
.sexual-preference-button.selected {
    background: #0073aa;
    color: white;
    border-color: #005177;
}
.color-box {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.color-box.selected {
    opacity: 0.6;
    border-color: #0073aa;
}
.error-message {
    color: red;
    display: none;
    font-size: 12px;
}
#color_test1-colors,
#color_test2-colors {
    margin: 10px 0;
}
#mawHypnoLoading {
    font-size: 16px;
    color: #0073aa;
}
@media (max-width: 600px) {
    .submit-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    .color-box {
        width: 40px;
        height: 40px;
    }
    .severity-button,
    .mental-health-button,
    .phobia-button,
    .sexual-preference-button {
        padding: 6px 10px;
        font-size: 12px;
    }
}