  #custom-cookie-notice {
    display: none; /* Initially hidden */
}

#custom-cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 10px;
    max-width: 350px;
    background-color: #ffffff;
    color: #000000;
    padding: 15px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
}

.cookie-notice-content {
    text-align: left;
}

.cookie-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

#cookie-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

#cookie-info {
    font-size: 14px;
    margin-top: 8px;
    color: #000000;
}

#cookie-info a {
    font-size: 14px;
    color: #000000;
    text-decoration:underline;
}


#cookie-continue-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 4px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
    background-color: #ffd700; /* Replace with CMS setting */
    color: #000000;
    font-weight: bold;
    text-align: center;
}

#cookie-close-btn {
    background: none;
    border: none;
    font-size: 24px; /* Make the X larger */
    cursor: pointer;
    color: #000000;
    line-height: 1; /* Ensure the X is centered vertically */
    padding: 0;
    font-family: Arial, sans-serif; /* Ensures it looks more like a standard 'X' */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
