#okCookie {
    background-color: #000000bf !important;
    border: 1px solid #fff;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-family: sans-serif;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 15px;
}

#okCookie h5 {
    margin: 0;
}

#okCookie p {
    margin: 0;
    padding: 5px 0;
    font-size: 16px;
    color: #ffffff !important;
    flex: 1;
    line-height: 1.5;
}

#acceptButton {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

#okCookie #okClose,
#okCookie #okCprivacy {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-block;
}

#okCookie #okClose {
    background-color: #005bff;
    color: #ffffff;
    font-weight: 500;
}

#okCookie #okClose:hover:not(:disabled) {
    background-color: #0051e0;
    transform: translateY(-1px);
}

#okCookie #okClose:active:not(:disabled) {
    transform: translateY(0);
}

#okCookie #okClose:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#okCookie #okCprivacy {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #fff;
}

#okCookie #okCprivacy:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.okcBeginAnimate {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #okCookie {
        flex-direction: column;
        align-items: stretch;
        padding: 25px 15px;
        gap: 15px;
    }

    #okCookie p {
        text-align: center;
        font-size: 14px;
    }

    #acceptButton {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    #okCookie #okClose,
    #okCookie #okCprivacy {
        width: 100%;
        padding: 15px 20px;
    }
}
