.question-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.question-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notes-section {
    margin-bottom: 15px;
}

.photos-section {
    border: 2px dashed #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
}

.category-header {
    background: #ffc107;
    color: #fff;
    padding: 15px;
    margin: 30px 0 20px 0;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
}

.form-header {
    background: #343a40;
    color: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.photo-preview-item {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
}

.photo-preview-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 2px;
}

.remove-photo-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    border: none;
    font-size: 10px;
    line-height: 1;
    cursor: pointer;
}

.category-header {
    background-color: #ffc107;
    color: #fff;
    padding: 10px;
    margin: 20px 0 10px 0;
    font-weight: bold;
    text-align: center;
}

.question-section {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.question-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notes-section {
    margin-bottom: 15px;
}

.photos-section {
    margin-bottom: 10px;
}

.validation-error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff5f5;
}

.requires-notes .notes-section textarea {
    border-left: 3px solid #dc3545;  /* Yellow warning for notes */
}

.requires-photos .photos-section {
    border-left: 3px solid #dc3545;  /* Yellow warning for photos */
}

.requires-notes .notes-section textarea::placeholder,
.requires-photos .photos-section .text-muted {
    color: #ff6b6b;
    font-weight: 500;
}