 /* Стилі для модального вікна */
 .modal {
     display: none;
     position: fixed;
     z-index: 1;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     justify-content: flex-end;
     align-items: flex-end;
 }

 .modal-content {
     background-color: white;
     padding: 20px;
     border-radius: 5px;
     text-align: center;
     margin: 20px;
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 40px;
 }

 .modal button {
     padding: 10px 20px;

     background-color: rgba(11, 122, 208, 1);
     color: white;
     border: none;
     border-radius: 5px;
 }
.modal p {
   margin: 0    ;
}