.intake-form-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.form-group {
    margin-bottom: 15px;
}
.form-submit button {
    padding: 10px 30px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.radio-group {
    margin-bottom: 10px;
}
.radio-group label {
    margin-right: 15px;
}
.checkbox-group label {
    margin-right: 15px;
    display: block;
    margin-bottom: 5px;
}
.body-chart-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.body-chart-svg {
    flex: 1;
    text-align: center;
    max-width: 45%;
}

/* SVG Body Parts */
svg .body-part {
    cursor: pointer;
}

svg .body-part circle,
svg .body-part ellipse,
svg .body-part rect,
svg .body-part path {
    fill: #eee;
    stroke: #333;
    stroke-width: 2;
    transition: fill 0.3s ease;
}

svg .body-part:hover circle,
svg .body-part:hover ellipse,
svg .body-part:hover rect,
svg .body-part:hover path {
    stroke-width: 3;
    filter: brightness(1.1);
}

svg .intimate-zone circle,
svg .intimate-zone ellipse,
svg .intimate-zone rect,
svg .intimate-zone path {
    fill: #f9f9f9;
    stroke: #666;
    stroke-width: 1;
    stroke-dasharray: 3,3;
}

/* Selected states - using !important to override inline styles */
svg .body-part.selected-green circle,
svg .body-part.selected-green ellipse,
svg .body-part.selected-green rect,
svg .body-part.selected-green path {
    fill: green !important;
    stroke: #333;
    stroke-width: 2;
}

svg .body-part.selected-orange circle,
svg .body-part.selected-orange ellipse,
svg .body-part.selected-orange rect,
svg .body-part.selected-orange path {
    fill: orange !important;
    stroke: #333;
    stroke-width: 2;
}

svg .body-part.selected-red circle,
svg .body-part.selected-red ellipse,
svg .body-part.selected-red rect,
svg .body-part.selected-red path {
    fill: red !important;
    stroke: #333;
    stroke-width: 2;
}

svg .intimate-zone.selected-green circle,
svg .intimate-zone.selected-green ellipse,
svg .intimate-zone.selected-green rect,
svg .intimate-zone.selected-green path {
    fill: green !important;
    stroke: #333;
    stroke-width: 2;
}

svg .intimate-zone.selected-orange circle,
svg .intimate-zone.selected-orange ellipse,
svg .intimate-zone.selected-orange rect,
svg .intimate-zone.selected-orange path {
    fill: orange !important;
    stroke: #333;
    stroke-width: 2;
}

svg .intimate-zone.selected-red circle,
svg .intimate-zone.selected-red ellipse,
svg .intimate-zone.selected-red rect,
svg .intimate-zone.selected-red path {
    fill: red !important;
    stroke: #333;
    stroke-width: 2;
}

/* Color Picker Styles */
.color-picker {
    margin: 20px 0;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.color-picker h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.color-options {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.color-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: none;
}

.color-btn:hover {
    background-color: #e9e9e9;
    transform: translateY(-3px);
}

.color-btn.active {
    border-color: #0073aa;
    background-color: #e0f0ff;
}

.color-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #333;
}

.chart-legend {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}
.legend-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: 1px solid #333;
}
.admin-body-chart {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.admin-body-chart svg {
    max-width: 45%;
    height: auto;
}

/* Form layout */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}