/* Simple Cookie Banner */
#policy-notification-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
}

.simple-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#policy-notification-box p {
    margin: 0;
    padding: 0;
    flex: 1;
    color: inherit !important;
    /* Force use of parent's inline style color */
}

#policy-notification-box a {
    color: inherit !important;
    text-decoration: underline;
}

#simple-cookie-accept {
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

#simple-cookie-accept:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .simple-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    #simple-cookie-accept {
        width: 100%;
    }
}