.ncm-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 21, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.ncm-consent-panel {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 24px 28px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.ncm-consent-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0F3D2E;
}

.ncm-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.ncm-consent-link {
    color: #0F3D2E;
    text-decoration: underline;
}

.ncm-consent-link:hover {
    color: #166534;
}

.ncm-consent-hint {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #8a6d00;
}

.ncm-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.ncm-consent-btn {
    border: 0;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
}

.ncm-consent-btn-accept {
    background: #0F3D2E;
    color: #ffffff;
}

.ncm-consent-btn-accept:hover {
    background: #166534;
}

.ncm-consent-btn-accept:disabled {
    background: #b9c4c0;
    color: #f0f0f0;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .ncm-consent-backdrop {
        padding: 0;
    }

    .ncm-consent-panel {
        max-width: none;
        border-radius: 0;
        padding: 20px;
    }

    .ncm-consent-actions {
        flex-direction: column-reverse;
    }

    .ncm-consent-btn {
        width: 100%;
    }
}
