/* Aegis feedback widget */

.feedback-trigger {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    border: 1px solid rgba(147, 197, 253, 0.35);
    border-radius: 999px;
    padding: 12px 18px;
    background: #93c5fd;
    color: #07111f;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.feedback-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(3, 7, 18, 0.72);
    padding: 24px;
}

.feedback-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-panel {
    position: relative;
    width: min(520px, 100%);
    border: 1px solid rgba(147, 197, 253, 0.24);
    border-radius: 26px;
    padding: 30px;
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.feedback-panel h2 {
    margin-top: 0;
    color: #bfdbfe;
}

.feedback-panel label {
    display: block;
    margin: 16px 0;
    color: #cbd5e1;
    font-weight: 700;
}

.feedback-panel select,
.feedback-panel textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    padding: 11px;
    background: #020617;
    color: #f8fafc;
    font: inherit;
}

.feedback-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #f8fafc;
    font-size: 30px;
    cursor: pointer;
}

.feedback-submit {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 13px 16px;
    background: #93c5fd;
    color: #07111f;
    font-weight: 800;
    cursor: pointer;
}

.feedback-message {
    margin-bottom: 0;
    color: #86efac;
    font-weight: 700;
}