.cookie-consent-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: #00468f;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.60);
    padding: 1rem 0.5rem;
    padding-right: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.cookie-consent-banner p {
    color: #fff;
}

.cookie-consent-banner a {
    color: #e81023;
    font-weight: bold;
}

.cookie-consent-banner-content {
    flex: 1;
}

.cookie-consent-banner .close-btn {
    position: absolute;
    right: 10px;
    top: 1rem;
    transform: translateY(-50%);
}

.cookie-consent-banner .close-btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cookie-consent-banner .close-btn-icon-line {
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.cookie-consent-banner .close-btn-icon-line:first-child {
    transform: rotate(45deg);
}

.cookie-consent-banner .close-btn-icon-line:last-child {
    transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        max-width: 35%;
    }
}