.help-page {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.help-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.help-header h1 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.help-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.help-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.alert-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.priority-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.priority-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.priority-option input[type="radio"] {
    display: none;
}

.priority-label {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.priority-option input[type="radio"]:checked + .priority-label {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.priority-label.low {
    border-color: #4caf50;
    color: #4caf50;
}

.priority-label.medium {
    border-color: #ff9800;
    color: #ff9800;
}

.priority-label.high {
    border-color: #f44336;
    color: #f44336;
}

.priority-option input[type="radio"]:checked + .priority-label.low {
    background: #4caf50;
    color: white;
}

.priority-option input[type="radio"]:checked + .priority-label.medium {
    background: #ff9800;
    color: white;
}

.priority-option input[type="radio"]:checked + .priority-label.high {
    background: #f44336;
    color: white;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.submit-btn {
    flex: 2;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cancel-btn {
    flex: 1;
    padding: 14px 20px;
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.cancel-btn:hover {
    background: #e0e0e0;
    text-decoration: none;
    color: #666;
}

.error-list {
    margin-top: 5px;
}

.error {
    color: #f44336;
    font-size: 12px;
    display: block;
}

@media (max-width: 768px) {
    .help-page {
        padding: 10px;
    }

    .help-container {
        padding: 20px;
    }

    .priority-options {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn {
        flex: none;
    }
}