/* Quick Help Popup Specific Styles */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 20px;
}

.quick-help-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.quick-help-title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}

textarea.form-control {
    height: 80px;
    resize: vertical;
}

.btn-submit, .btn-submit:focus, .btn-submit:hover {
    background: #007cba;
    color: white !important;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #005a87 !important;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.required {
    color: #e74c3c;
}

/* Responsive design */
@media (max-width: 768px) {
    .quick-help-container {
        padding: 0px;
    }
    
    .quick-help-title {
        font-size: 20px;
    }
}
