#ccb-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: none;
    font-family: inherit;
}

#ccb-cookie-banner.is-visible {
    display: block;
}

.ccb-cookie-banner__content {
    position: relative;
    max-width: 777px;
    margin: 0 auto;
    background: #ffffff;
    color: #1f2937;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.ccb-cookie-banner__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #1e3a5f;
    font-weight: 600;
}

.ccb-cookie-banner__text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.ccb-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ccb-btn {
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
    transition: all 0.2s ease;
}

.ccb-btn:hover {
    transform: translateY(-1px);
}

.ccb-btn--accept {
    background: #1e3a5f;
    color: #ffffff;
}

.ccb-btn--accept:hover {
    background: #274b78;
}

.ccb-btn--refuse {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.ccb-btn--refuse:hover {
    background: #f3f4f6;
}

.ccb-cookie-banner__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.ccb-cookie-banner__close:hover {
    color: #111827;
}

@media (max-width: 640px) {
    #ccb-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .ccb-cookie-banner__content {
        padding: 20px;
    }

    .ccb-cookie-banner__actions {
        flex-direction: column;
    }

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