.jbc-cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
	gap: 1rem;
    z-index: 9999;
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
	padding: 1.5rem;
    max-width: 20rem;
	backdrop-filter: blur(12px);
    background: rgba(5, 33, 24, .75);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 2rem;
}

.jbc-cookie-content {
    flex: 1;
}

.jbc-cookie-content p {
    margin: 0;
	font-size: 1rem;
}

.jbc-policy-link {
    color: inherit;
    text-decoration: underline;
    margin-left: 5px;
}

.jbc-policy-link:hover {
    text-decoration: none;
}

.jbc-cookie-buttons {
    display: flex;
    gap: 1rem;
}

.jbc-accept-btn, .jbc-reject-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
	background-color: transparent;
    color: #ffffff;
}

.jbc-accept-btn:hover, .jbc-reject-btn:hover {
    opacity: 0.9;
}

.jbc-accept-btn {
    border: 1px solid #ffffff;
}

@media (max-width: 768px) {
    .jbc-cookie-banner {
        text-align: center;
		bottom: 1rem;
		left: 1.25rem;
		right: 1.25rem;
		gap: 0.5rem;
		padding: 1rem;
		max-width: 100%;
    }
    
    .jbc-cookie-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jbc-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}