/* HIV Feedback Widget */
.hiv-feedback-widget {
    background: #f4f5fa; /* var(--bp-light-gray) */
    border: 1px solid rgba(1, 102, 153, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 30px 0;
    font-family: inherit;
    color: #000000;
}

.hiv-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hiv-feedback-date {
    color: #0b4778; /* var(--bp-dark-blue) */
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hiv-feedback-date i {
    font-size: 1.1rem;
    color: #016699; /* var(--bp-light-blue) */
}

.hiv-feedback-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hiv-feedback-btn {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 6px 16px;
    font-weight: 600;
    color: #0b4778;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hiv-feedback-btn:hover {
    background: #016699;
    color: #ffffff;
    border-color: #016699;
}

.hiv-feedback-more-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dcdcdc;
}

.hiv-feedback-more-info p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b4778;
}

.hiv-feedback-more-info textarea {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
}

.hiv-feedback-more-info textarea:focus {
    border-color: #016699;
    outline: none;
}

.hiv-feedback-submit-btn {
    background: #8b0a03; /* var(--bp-red) */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hiv-feedback-submit-btn:hover {
    background: #0b4778; /* var(--bp-dark-blue) */
}

.hiv-feedback-submit-btn:disabled,
.hiv-feedback-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hiv-feedback-success,
.hiv-feedback-error {
    font-weight: 600;
    padding: 10px;
    border-radius: 4px;
}

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

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