/* =========================================================
   MODAL WYLOGOWANIA
   Plik: style-logout.css
========================================================= */

.premium-logout-modal .modal-dialog {
  max-width: 420px;
}

.premium-logout-modal .modal-content {
  border: 1px solid #e6ecf5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .12);
  overflow: hidden;
}

.premium-logout-modal .modal-body {
  position: relative;
  padding: 28px 28px 24px;
  text-align: center;
}

.premium-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #9aa5b4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.premium-close i {
  font-size: 14px;
}

.premium-close:hover {
  background: #f1f5fb;
  color: #3473BA;
}

.logout-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(220, 63, 74, .09);
  color: #DC3F4A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-icon i {
  font-size: 22px;
}

.logout-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0f2745;
}

.logout-description {
  max-width: 330px;
  margin: 0 auto 22px;
  color: #6b7a90;
  font-size: .85rem;
  line-height: 1.55;
  font-weight: 400;
}

.logout-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.logout-actions .btn {
  flex: 1;
  min-height: 42px;
  border-radius: 11px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: .2s ease;
}

.btn-cancel {
  background: #ffffff;
  border: 1px solid #e0e6ef;
  color: #46536b;
}

.btn-cancel:hover {
  background: #f6f8fc;
  border-color: #cfd8e6;
  color: #0f2745;
}

.btn-cancel i {
  margin: 0 !important;
  font-size: 15px;
}

.btn-logout {
  border: 0;
  color: #ffffff !important;
  background: #DC3F4A;
  box-shadow: 0 5px 14px rgba(220, 63, 74, .20);
}

.btn-logout:hover {
  color: #ffffff !important;
  background: #C2333D;
  box-shadow: 0 7px 18px rgba(220, 63, 74, .26);
}

.btn-logout i {
  margin: 0 !important;
  font-size: 15px;
  flex-shrink: 0;
}

.btn-logout span,
.btn-cancel span {
  display: inline-block;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 575.98px) {
  .premium-logout-modal .modal-dialog {
      margin: 16px;
  }

  .premium-logout-modal .modal-body {
      padding: 26px 20px 20px;
  }

  .logout-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      margin-bottom: 14px;
  }

  .logout-icon i {
      font-size: 20px;
  }

  .logout-title {
      font-size: 1.05rem;
  }

  .logout-description {
      font-size: .82rem;
      margin-bottom: 18px;
  }

  .logout-actions {
      flex-direction: column;
  }

  .logout-actions .btn {
      width: 100%;
  }
}
