/* Попап */
.popup-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 50%;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Кнопка */
#openPopupBtn {
    background: #f50529 ;
    color: #ffffff ;
    border: 1px solid #ffffff;
    font-weight: normal ;
    font-size: 16px;
    display: block;
    padding: 10px 30px;
    margin: auto;
}

#openPopupBtn:hover {
    background-color: #0056b3;
}

/* Повідомлення після надсилання */
#successMessage {
    font-size: 18px;
    font-weight: bold;
}
