/* Portal AUTH - Convocar Google Meet v1 */

body main .quick-grid .quick-card.portal-meet-call-ready{
  position: relative !important;
  padding-right: 48px !important;
}

.portal-meet-call-btn{
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(13,71,130,.16);
  background: #0f172a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(15,23,42,.16);
  z-index: 5;
  cursor: pointer;
}

.portal-meet-call-btn:hover{
  background: #1d2b46;
}

.portal-meet-modal-backdrop{
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,23,42,.42);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.portal-meet-modal-backdrop.is-open{
  display: flex;
}

.portal-meet-modal{
  width: min(720px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  color: #0f2546;
  box-shadow: 0 30px 90px rgba(15,23,42,.35);
  border: 1px solid rgba(13,71,130,.14);
}

.portal-meet-modal-head{
  padding: 18px 20px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(13,71,130,.10);
}

.portal-meet-modal-head h3{
  margin: 0;
  font-size: 1.2rem;
}

.portal-meet-modal-head p{
  margin: 4px 0 0;
  color: #496383;
  font-size: .86rem;
}

.portal-meet-modal-close{
  border: 0;
  background: #eef5fd;
  color: #0f2546;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.portal-meet-modal-body{
  padding: 16px 20px 18px;
}

.portal-meet-field{
  margin-bottom: 13px;
}

.portal-meet-field label{
  display: block;
  font-size: .78rem;
  font-weight: 900;
  color: #244362;
  margin-bottom: 6px;
}

.portal-meet-field input,
.portal-meet-field textarea,
.portal-meet-field select{
  width: 100%;
  border: 1px solid rgba(13,71,130,.18);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: .9rem;
  box-sizing: border-box;
  outline: none;
}

.portal-meet-field textarea{
  min-height: 72px;
  resize: vertical;
}

.portal-meet-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.portal-meet-check-list{
  border: 1px solid rgba(13,71,130,.12);
  border-radius: 16px;
  padding: 9px;
  max-height: 150px;
  overflow: auto;
  background: #f8fbff;
}

.portal-meet-check-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  padding: 6px 5px;
}

.portal-meet-check-item input{
  width: auto;
}

.portal-meet-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

.portal-meet-actions button{
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
}

.portal-meet-cancel{
  background: #eef5fd;
  color: #0f2546;
}

.portal-meet-submit{
  background: #0f172a;
  color: #fff;
}

.portal-meet-status{
  margin-top: 10px;
  font-size: .84rem;
  color: #244362;
}

.portal-meet-status.is-error{
  color: #b91c1c;
  font-weight: 800;
}

.portal-meet-status.is-ok{
  color: #15803d;
  font-weight: 800;
}

@media(max-width:760px){
  .portal-meet-grid{
    grid-template-columns: 1fr;
  }

  .portal-meet-modal{
    width: 98vw;
  }
}
