.ccb-cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 1085;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.45);
}

.ccb-cookie-consent__panel {
    width: min(1100px, 100%);
    max-height: calc(100vh - 2rem);
    background-color: #fff;
    color: #1c2b3a;
    border: 1px solid #d7dce2;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
    padding: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ccb-cookie-consent__header {
    margin-bottom: 0.75rem;
}

.ccb-cookie-consent__table-wrapper {
    max-height: 45vh;
    overflow: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.ccb-cookie-consent__actions {
    margin-top: auto;
}

.ccb-cookie-consent code {
    color: #5c2d91;
}

body.ccb-cookie-consent-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .ccb-cookie-consent {
        padding: 0.5rem;
    }

    .ccb-cookie-consent__panel {
        padding: 0.75rem;
        max-height: calc(100vh - 1rem);
    }

    .ccb-cookie-consent__table-wrapper {
        max-height: 50vh;
    }

    .ccb-cookie-consent .table {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .ccb-cookie-consent__actions {
        flex-direction: column;
    }

    .ccb-cookie-consent__actions .btn {
        width: 100%;
    }
}
