.odm-consent-hidden {
    display: none !important;
}

.odm-consent-banner {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: 1200px;
    z-index: 2147483000;
    box-sizing: border-box;
    transform: translateX(-50%);
    border-radius: 16px;
    border: 1px solid var(--odm-consent-outline, #cbd5e1);
    background: var(--odm-consent-bg, #0f172a);
    color: var(--odm-consent-text, #ffffff);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
    padding: 18px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.odm-consent-banner a,
.odm-consent-modal a {
    color: inherit;
    text-decoration: underline;
}

.odm-consent-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}

.odm-consent-body {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.odm-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.odm-consent-btn {
    border: 1px solid var(--odm-consent-outline, #cbd5e1);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
}

.odm-consent-btn-primary {
    background: var(--odm-consent-button-bg, #2563eb);
    border-color: var(--odm-consent-button-bg, #2563eb);
    color: var(--odm-consent-button-text, #ffffff);
}

.odm-consent-settings-link {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147482999;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
}

.odm-consent-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483001;
    background: rgba(15, 23, 42, 0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.odm-consent-modal {
    width: min(100%, 720px);
    max-height: calc(100vh - 32px);
    overflow: auto;
    border-radius: 16px;
    border: 1px solid #dbe3ef;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
}

.odm-consent-modal-header,
.odm-consent-modal-footer {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.odm-consent-modal-footer {
    border-top: 1px solid #e5e7eb;
    border-bottom: 0;
}

.odm-consent-modal-body {
    padding: 20px;
}

.odm-consent-grid {
    display: grid;
    gap: 12px;
}

.odm-consent-row {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
}

.odm-consent-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.odm-consent-row-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.odm-consent-row-copy {
    font-size: 13px;
    color: #475569;
    margin-top: 6px;
}

.odm-consent-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 640px) {
    .odm-consent-banner {
        left: 50%;
        right: auto;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .odm-consent-actions {
        flex-direction: column;
    }

    .odm-consent-btn {
        width: 100%;
    }
}
