/* ============================================
   MODAL ALERT PARTIAL
   Alert modal for displaying messages
   ============================================ */

/* Alert Modal Content */
.alert-modal-content {
  text-align: center;
  padding: 20px;
}

@media (min-width: 768px) {
  .alert-modal-content {
    padding: 32px;
  }
}

/* Alert Icon */
.alert-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
}

@media (min-width: 768px) {
  .alert-modal-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
    margin-bottom: 24px;
  }
}

/* Icon Types */
.alert-icon-success {
  background-color: rgba(107, 207, 127, 0.2);
  color: var(--success-green);
}

.alert-icon-error {
  background-color: rgba(255, 107, 107, 0.2);
  color: var(--error-red);
}

.alert-icon-warning {
  background-color: rgba(255, 217, 61, 0.2);
  color: var(--warning-yellow);
}

.alert-icon-info {
  background-color: rgba(91, 159, 216, 0.2);
  color: var(--primary-blue);
}

/* Alert Message */
.alert-modal-message {
  font-size: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .alert-modal-message {
    font-size: 18px;
  }
}

/* Alert Modal Footer */
.modal-alert .modal-footer {
  justify-content: center;
}

.modal-alert .modal-footer .btn {
  min-width: 120px;
}

@media (min-width: 768px) {
  .modal-alert .modal-footer .btn {
    min-width: 150px;
  }
}