/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    position: relative;
}

/* Cookie Banner Container */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 440px;
    height: 210px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    font-size: 14px;
}

/* Heading */
.cookie-banner h2 {
    font-size: 18px;
    color: #333;
}

/* Buttons */
.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-accept, .btn-customize {
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-accept {
    background-color: #4caf50;
    color: white;
}

.btn-customize {
    background-color: #ffffff;
    color: #333;
	border: 2px solid #04AA6D;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-customize:hover {
    background-color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .cookie-banner {
        width: 90%;
        height: auto;
        left: 5%;
        bottom: 10px;
    }

    .cookie-banner h2 {
        font-size: 16px;
    }
}
