:root {
    --primary: #1F7A4F;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1f1f1f;
    color: #eee;
    padding: 18px 20px;
    font-size: 14px;
    z-index: 9999;
    border-top: 3px solid var(--primary);
}

.cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
}

.cookie-buttons button {
    padding: 8px 14px;
    border-radius: 4px;
    border: red solid 1px;
    cursor: pointer;
    font-size: 13px;
}

#cookie-settings {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

#accept-cookies {
    padding: 10px 15px;
    border-radius: 20px;
    border-color: white;
    border: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: 600;
}