.jbc-cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    right: 0;
	width: calc(100% - 2rem);
	max-width: 45rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    z-index: 9999;
    background-color: #fff;
    border: solid 1px #F1F2F9;
    box-shadow: 0 4px 32px -4px rgba(111, 108, 143, 0.12), 0 3px 12px -2px rgba(170, 170, 190, 0.06);
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
	border-radius: 0;
	transform: translateX(-50%);
}

.jbc-cookie-icon {
	min-width: 2.75rem;
	height: 2.75rem;
	background: url(../images/cookie.svg) center / 2.75rem 2.75rem no-repeat;
	padding: 0.625rem;
	border-radius: 0;
}

.jbc-cookie-content {
    display: flex;
	gap: 0.75rem;
}

.jbc-cookie-content p {
	color: black;
	margin: 0;
}

.jbc-cookie-content a {
    color: black;
	text-decoration: underline;
}

.jbc-cookie-content a:hover {
    color: black;
	text-decoration: none;
}

.jbc-policy-link {
    color: inherit;
    text-decoration: underline;
}

.jbc-policy-link:hover {
    text-decoration: none;
}

.jbc-cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.jbc-accept-btn, .jbc-reject-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
    font-size: max(12px, 0.75rem);
    transition: all 0.3s ease;
    color: black;
	min-width: 7.5rem;
	background-color: white;
}

.jbc-accept-btn:hover, .jbc-reject-btn:hover {
    background-color: #f95b2b;
    border-color: #f95b2b;
	color: white;
}

.jbc-accept-btn {
    color: #fff;
    border-color: #FF7300;
	background-color: #FF7300;
}

@media (max-width: 768px) {
    .jbc-cookie-banner {
        flex-direction: column;
		bottom: 1rem;
    }
    
    .jbc-cookie-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jbc-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}