/* Logout Confirmation Modal Styles */
.logout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  font-family: "helvetica", Arial, sans-serif;
}

.logout-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-modal-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.logout-modal-title {
  color: var(--brand-primary);
  font-size: var(--font-size-lg);
  font-weight: normal;
  margin-bottom: 15px;
  font-family: "ivypresto-headline", serif;
}

.logout-modal-message {
  color: var(--dark-grey-color);
  font-size: var(--font-size-md);
  line-height: 1.4;
  margin-bottom: 25px;
}

.logout-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.logout-modal-button {
  cursor: pointer;
  border-radius: var(--radius-md, 8px);
  background: var(--brand-tertiary);
  height: 50px;
  width: 30%;
  color: var(--base-white);
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  font-weight: var(--bold);
  border: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.logout-modal-confirm {
  background: var(--brand-accent);
}

.logout-modal-confirm:hover {
  transform: translateY(-1px);
}

.logout-modal-cancel {
  background: var(--brand-primary);
}

.logout-modal-cancel:hover {
  transform: translateY(-1px);
}

.logout-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: var(--font-size-lg);
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-modal-close:hover {
  color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logout-modal-content {
    padding: 20px;
    margin: 20px;
  }
  .logout-modal-title {
    font-size: 20px;
  }
  .logout-modal-message {
    font-size: var(--font-size-md);
  }
  .logout-modal-buttons {
    flex-direction: column;
    align-items: center;
  }
  .logout-modal-button {
    width: 100%;
    max-width: 200px;
  }
}

/*# sourceMappingURL=logout_modal.css.map */
