.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c; /* dark navy */
    color: #fff;
    padding: 15px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000; /* always above content */
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
    margin: 0;
    padding-right: 15px;
    line-height: 1.4;
    flex: 1;
}

.cookie-link {
    color: #63b3ed; /* light blue */
    text-decoration: underline;
    margin-left: 8px;
}

.cookie-btn {
    background: #38a169; /* green */
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease-in-out;
}

.cookie-btn:hover {
    background: #2f855a;
}

/* Mobile friendly adjustments */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        padding: 0 0 10px 0;
    }
}
