.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%; /* Default width for larger screens */
    background-color: #ffffff; /* Background color */
    color: #23262B; /* Text color */
    padding: 15px;
    border-radius: 8px; /* rounded corners */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: none; /* Remove box shadow */
}

.cookie-notice p {
    margin: 0;
    padding-right: 15px; /* Add padding between text and button */
}

.cookie-notice a {
    color: #000000; /* Link color */
    text-decoration: underline;
}

.cookie-accept {
    background-color: transparent; /* Transparent background */
    color: #000000; /* Text color */
    border: 1px solid #000000; /* Border color and thickness */
    padding: 10px 20px;
    border-radius: 30px; /* rounded edges */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'space_grotesk', sans-serif; /* Font family */
    text-transform: uppercase; /* Capital letters */
}

.cookie-accept:hover {
    background-color: #e8ff91; /* Hover background color */
    color: #000000; /* Maintain text color on hover */
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-notice {
        width: 80%; /* Adjust width for tablets and small desktops */
    }

    .cookie-notice p {
        padding-right: 10px; /* Adjust padding for smaller screens */
    }

    .cookie-accept {
        padding: 8px 16px; /* Adjust button padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        width: 90%; /* Adjust width for mobile devices */
        flex-direction: column;
        text-align: center;
    }

    .cookie-notice p {
        padding-right: 0;
        margin-bottom: 10px; /* Add margin for better spacing */
    }

    .cookie-accept {
        width: 100%; /* Full width button on mobile */
        padding: 10px; /* Adjust button padding */
    }
    #cookie-notice {
  opacity: 0;
  transition: opacity 0.5s ease;
}

}
