#cookie-consent {
    display: none;
}

#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup */
#cookie-consent-popup {
    background: #fff;
    padding: 24px 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    text-align: left;
    position: relative;
}

#cookie-consent .button-container {
    text-align: right;
}

/* Close Button */
#cookie-consent button {
    background-color: var(--light-grey);
    box-sizing: border-box;
    text-decoration: none;
    padding: 0 25px;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.6s ease-out 0s;
    border-radius: 0;
    border: none;
    margin: 15px 5px 0 5px;
}

#cookie-consent button.accept {
    background-color: var(--purple);
}

#cookie-consent button:hover {
    background: var(--dark-grey);
}
