.cookiezilla {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    max-height: 50vh;
    overflow-y: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookiezilla__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    line-height: 1.5;
    font-size: 15px;
}

.cookiezilla__buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookiezilla a:not([target="_blank"]) {
    text-decoration: underline;
}

.cookiezilla a {
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: color 0.5s ease-in-out;
}

.cookiezilla a:hover {
    text-decoration: underline;
}

.cookiezilla button {
    border: none;
    box-shadow: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: color 0.5s ease-in-out, box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookiezilla button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cookiezilla button:active {
    transform: translateY(0);
}

.cookiezilla-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}

.cookiezilla-modal__content {
    max-width: 700px;
    width: calc(100% - 30px);
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    line-height: 1.5;
    font-size: 15px;
    text-align: left;
}

.cookiezilla-modal__content h2 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

.cookiezilla-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	padding: 32px;
	position: sticky;
	top: 0px;
	background-color: inherit;
	z-index: 1;
}

.cookiezilla-modal__body {
	width: 100%;
	padding: 32px;
	padding-top: 0px;
}

.cookiezilla-modal__item {
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.cookiezilla-modal__item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.cookiezilla-modal__item strong {
    font-weight: 600;
}

.cookiezilla-modal__item span {
    margin-left: 5px;
}

.cookiezilla-modal__close {
    width: 82px;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    margin-top: 3px;
    transition: color 0.5s ease-in-out, box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Media */
@media screen and (max-width: 767px) {
	.cookiezilla-modal__header {
		padding: 24px 16px;
	}

	.cookiezilla-modal__body {
		padding: 24px 16px;
		padding-top: 0px;
	}

	.cookiezilla-modal__content h2 {
		font-size: 18px;
		line-height: 24px;
	}

	.cookiezilla-modal__close {
		margin-top: 0px;
	}
}