/* Main container - 100% width, fixed to bottom. NO VISUAL STYLES. */
.main-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    width: 100%;
    padding-bottom: 24px;
    /* Animation setup */
    opacity: 0;
    transition-property: opacity;
    pointer-events: none; /* Allows clicking through this container */
}

/* Sub-main container - 1240px for alignment. NO VISUAL STYLES. */
.submain-cookies {
    width: 100%;
    max-width: 1200px; /* Alignment width */
    margin: 0 auto;
    position: relative;
    pointer-events: auto; /* Re-enables clicking for its children */
}

/* .settings-custom{
	background-color: rgba(0, 0, 0, .8) !important;
} */

/* The Modal itself - 666px, gets all the visual styles */
#alphaCookieNotice {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
    transition-property: opacity, transform;
    background-color: black !important;
    /* Frosted glass effect applied ONLY to the modal */
/*     -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); */
	width: 666px;
	border-radius: 16px;
}



/* Animation styles */
#alphaCookieNotice.animation-fade { opacity: 0; }
#alphaCookieNotice.animation-slide { opacity: 0; transform: translateY(20px); }

.main-cookies.ready { opacity: 1; }
#alphaCookieNotice.ready { opacity: 1; transform: translateY(0); }


#alphaCookieNotice h4 {
    margin: 0 0 16px 0; /* Adds 16px of space BELOW the title */
    padding: 0;
	font-size: 18px;
	color: white;
}

#alphaCookieNotice p {
    margin: 0 0 16px 0; /* Adds 16px of space BELOW the description */
    padding: 0;
    opacity: 0.9;
	font-size: 16px;
	color: white;
}
.alpha-cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.alpha-cookie-buttons button {
    padding: 12px 24px;
    border: 1px solid transparent;
    cursor: pointer;
	border-radius: 100px!important;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .submain-cookies {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    #alphaCookieNotice {
        width: 100%;
        max-width: none;
		padding: 24px;
    }
	.main-cookies{
		padding: 10px;
	}
	
}


#alphaCookieSettingsPanel {
    display: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}
#alphaCookieSettingsPanel h5 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 600;
}
#alphaCookieSettingsPanel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#alphaCookieSettingsPanel li {
    display: flex;
    align-items: flex-start;
}
#alphaCookieSettingsPanel input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}
#alphaCookieSettingsPanel label {
    cursor: pointer;
    flex-grow: 1;
}
#alphaCookieSettingsPanel label strong {
    font-weight: 600;
    display: block;
}
#alphaCookieSettingsPanel label small {
    display: block;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 4px;
}