.wp-cookie-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-cookie-popup-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wp-cookie-popup-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.wp-cookie-popup-content button {
    padding: 10px 25px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

#wp-cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

#wp-cookie-accept:hover {
    background-color: #218838;
}

#wp-cookie-deny {
    background-color: #dc3545;
    color: #ffffff;
}

#wp-cookie-deny:hover {
    background-color: #c82333;
}