/* --- Simple & Customizable Cookie Consent Banner --- */
/* Provided by StartWithSite.com */

/* --- 1. Easy Customization Variables --- */
:root {
    --cookie-bg: #222222;
    --cookie-text-color: #eeeeee;
    --cookie-button-bg: #007bff;
    --cookie-button-text-color: #ffffff;
    --cookie-link-color: #80bfff;
}

/* --- 2. Banner Styles --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--cookie-bg);
    color: var(--cookie-text-color);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 1000;

    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-consent-banner a {
    color: var(--cookie-link-color);
    text-decoration: underline;
}

.cookie-consent-button {
    background-color: var(--cookie-button-bg);
    color: var(--cookie-button-text-color);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cookie-consent-button:hover {
    background-color: #0056b3;
}