#cookie-policy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #4a5568;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

#cookie-policy-banner p {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

#cookie-policy-banner button {
    background-color: #ec4899;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

#cookie-policy-banner button:hover {
    background-color: #db2777;
}

#cookie-policy-banner button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #1a1a2e, 0 0 0 4px #f472b6;
}