#cisecyv-complaint-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}
#cisecyv-complaint-form h4 {
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
    margin-top: 20px;
    color: #333;
}
.form-row {
    display: flex;
    gap: 30px; /* Increased from 15px */
    margin-bottom: 25px; /* Increased from 15px */
}
.form-row .col {
    flex: 1;
}
.form-group {
    margin-bottom: 25px; /* Increased from 15px */
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button#btn-submit-complaint {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}
button#btn-submit-complaint:hover {
    background-color: #005177;
}
#complaint-message {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    display: none;
    border-radius: 4px;
}
#complaint-message.success {
    background-color: #d4edda;
    color: #155724;
}
#complaint-message.error {
    background-color: #f8d7da;
    color: #721c24;
}
.privacy-note {
    font-size: 0.85em;
    color: #555;
    margin-top: 10px;
}
/* Severity Traffic Light */
.severity-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}
.severity-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal; /* Override bold label */
}
.severity-option input {
    margin-right: 10px;
}
.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.dot-green {
    background-color: #28a745;
}
.dot-yellow {
    background-color: #ffc107;
}
.dot-red {
    background-color: #dc3545;
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
