#mcookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.95);
    color: #f1f1f1;
    padding: 1rem 1.5rem;
    font-family: system-ui, sans-serif;
    z-index: 9999;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}

#mcookie-consent-banner p {
    margin: 0;
    flex: 1 1 auto;
    line-height: 1.4;
}

#mcookie-consent-banner button {
    background-color: #ffa807;
    color: #111;
    padding: 0.45rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mcookie-consent-banner button:hover {
    background-color: #e39605;
}

#mcookie-consent-banner a {
    color: #ffa807;
    text-decoration: underline;
}

@media (max-width: 600px) {
    #mcookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    #mcookie-consent-banner button {
        margin-top: 0.5rem;
    }
}
