#sl-cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: auto;
    background: #1f2937;
    color: #ffffff;
    border-radius: 12px;
    padding: 18px 24px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

#sl-cookie-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

#sl-cookie-notice a {
    color: #60a5fa;
    text-decoration: none;
}

#sl-cookie-notice a:hover {
    text-decoration: underline;
}

#sl-cookie-accept {
    background: #2563eb;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
}

#sl-cookie-accept:hover {
    opacity: .9;
}

@media (max-width: 768px) {

    #sl-cookie-notice {
        flex-direction: column;
        align-items: flex-start;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 16px;
    }

    #sl-cookie-accept {
        width: 100%;
    }
}