﻿button:hover {
    cursor: pointer;
}

.agent-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
}

.agent-modal-container {
    width: 33rem;
}

.agent-input {
    width: 100%;
    font-size:1rem;
}

    .agent-input:focus {
        border: 1px solid var(--rz-primary);
        /*box-shadow: rgb(3 105 131 / 15%) 0px 7px 15px 0px;*/
        outline: none;
    }



.modal__header,
.modal__body,
.modal__footer {
    padding: 16px 32px;
}

.modal__header {
    border-bottom: 1px solid #e5e5e5;
}
.modal__footer {
    border-top: 1px solid #e5e5e5;
}
.modal__body{
    height:fit-content;
    overflow:auto;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 20;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
/* opacity: 0;
  pointer-events: none;
  transition: all .3s ease-in-out;
  visibility:hidden; */
.modal__container {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    box-shadow: 0px 4px 4px 0px rgba(59, 64, 60, .15);
    position: relative;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    max-height: 95%;
    max-width: 760px;
    border-radius: 4px;
    width: 100%;
    overflow: hidden;
}