#beez-weight-limit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.beez-popup-content {
    background-color: #fff;
    border: 2px solid #4e342e;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.beez-popup-content h2 {
    color: #4e342e;
    margin-top: 0;
    font-size: 1.4em;
}

.beez-popup-content p {
    color: #333;
    line-height: 1.5;
}

.beez-popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.beez-button {
    background-color: #6d4c41;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.beez-button:hover {
    background-color: #5d4037;
}

.beez-button-secondary {
    background-color: #fff;
    color: #6d4c41;
    border: 1px solid #6d4c41;
}

.beez-button-secondary:hover {
    background-color: #f5f5f5;
}