.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005d;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    backdrop-filter: blur(5px);
}

.modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #619355;
    border-radius: 20px 20px 0 0;
    color: white;
}

.modal_body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}

.modal_body input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #619355;
}

.modal_body button {
    padding: 10px 20px;
    border: none;
    background-color: #619355;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.modal_body form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 300px;
}

.modal_content {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.modal_header span {
    cursor: pointer;
    font-size: 25px;
    margin-left: 20px;
    padding: 5px;
    border-radius: 25px;
    transition: 0.5s;
    color: #619355;
    background-color: #fff;
}

.modal_header span:hover {
    transition: 0.5s;

    color: black;
}

.bottom-modal {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    justify-content: center;
    transition: all .3s;
    backdrop-filter: blur(5px);
}

.bottom-modal .bottom-modal-content {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.bottom-modal-text-title {
    font-size: 15px;
    font-weight: bold;
    color: #619355;
}

.bottom-modal-text-description {
    font-size: 12px;
    color: #619355;
}

.bottom-modal-text-description a {
    color: #619355;
    text-decoration: underline;
}

.bottom-modal-text-description a:hover {
    text-decoration: underline;
}

.bottom-modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.bottom-modal-buttons-button {
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin: 0 10px;
}

.bottom-modal-buttons-button.accept{
    background-color: #619355;
    color: white;
}

.bottom-modal-buttons-button.reject{
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 1px solid #619355;
}
.bottom-modal-buttons-button:hover {
    background-color: #4d714d;
}

@media screen and (max-width: 600px) {
    .bottom-modal .bottom-modal-content {
        flex-direction: column;
        gap: 5px;
    }
    
}