.feedback-help-toggle {
    position: fixed !important;
    right: -70px !important;
    top: 65% !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    transform-origin: center !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 0 !important;
    height: auto !important;

    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-height: 1 !important;

    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    direction: ltr !important;

    background: #4f7184 !important;
    color: #fff !important;
    border: none !important;

    border-radius: 8px 8px 0 0 !important;
    padding: 14px 18px !important;

    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    z-index: 9999 !important;
}

#feedback-guest-title {
    width: 100%;
    display: block;
    border: 1px solid #d7dfe6;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 15px;
    background: #fff;
    color: #33424f;
    box-sizing: border-box;
    min-height: 48px;
}

#feedback-guest-title:focus {
    border-color: #4f7184;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 113, 132, 0.12);
}

.feedback-entry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(37, 76, 110, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.feedback-entry-modal {
    width: min(860px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    padding: 32px 32px 24px;
    position: relative;
}

.feedback-entry-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #eef2f5;
    color: #5b6875;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-entry-close:hover {
    background: #e7edf2;
    color: #33424f;
}

.feedback-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.feedback-entry-card {
    border: 1px solid #d7e0e8;
    border-radius: 18px;
    background: #fff;
    min-height: 260px;
    padding: 34px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-entry-card:hover {
    border-color: #b9c9d4;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feedback-entry-icon {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 22px;
}

.feedback-entry-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2f3f4d;
}

.feedback-entry-text {
    font-size: 17px;
    line-height: 1.5;
    color: #61707c;
    margin: 0;
}

.feedback-email-form {
    margin-top: 26px;
    border-top: 1px solid #e5ebf0;
    padding-top: 22px;
}

.feedback-email-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #44515d;
}

.feedback-email-form input,
.feedback-email-form textarea {
    width: 100%;
    border: 1px solid #d7dfe6;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 15px;
}

.feedback-email-form textarea {
    min-height: 120px;
    resize: vertical;
}

.feedback-email-actions {
    display: flex;
    gap: 12px;
}

.feedback-email-actions button {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

#feedback-email-cancel {
    background: #e9eef2;
    color: #33424f;
}

#feedback-email-send {
    background: #35586c;
    color: #fff;
}

#feedback-email-send:disabled {
    background: #aebbc5;
    cursor: not-allowed;
    opacity: 0.7;
}

.feedback-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.feedback-email-form {
    margin-top: 24px;
    border-top: 1px solid #e5ebf0;
    padding-top: 20px;
}

.feedback-entry-modal.is-guest {
    width: min(860px, 92vw);
}

.feedback-entry-modal.is-guest .feedback-entry-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feedback-entry-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feedback-entry-icon-img {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .feedback-entry-modal.is-guest .feedback-entry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .feedback-entry-grid {
        grid-template-columns: 1fr;
    }

    .feedback-entry-modal {
        width: 96vw;
        max-height: 92vh;
        padding: 24px 20px 20px;
    }

    .feedback-entry-card {
        min-height: 180px;
        padding: 24px 18px;
    }

    .feedback-entry-icon {
        font-size: 56px;
        margin-bottom: 16px;
    }

    .feedback-entry-title {
        font-size: 22px;
    }

    .feedback-entry-text {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .feedback-entry-grid {
        grid-template-columns: 1fr;
    }

    .feedback-entry-modal {
        width: 94vw;
        padding: 24px 20px;
    }

    .feedback-entry-card {
        min-height: 180px;
    }
}