#modalbox {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid black;
    font-size: 14px;
    padding: 5px;
    font-weight: 500;
    background: #fff;
    border-radius: 0;
    display: none;
}

#modalbox p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Spațiu între elementele flex */
    padding: 10px; 
}

#modalbox p a {
    color: red;
}

#modalbox button {
    background: #ff5945;
    color: #fff;
    padding: 15px 20px; 
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    outline: 0;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}