/* Alert Notification Component */

.alert-notification {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid;
  align-items: flex-start;
}

/* Alert Icon */
.alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-icon svg {
  width: 100%;
  height: 100%;
}

/* Alert Content */
.alert-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* Alert Title */
.alert-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* Alert Description */
.alert-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  color: #1E1E1E;
}

/* Warning Alert (Default) */
.alert-notification.alert-warning {
  background-color: rgba(236, 34, 31, 0.2);
  border-color: #EC221F;
  color: #EC221F;
}

.alert-notification.alert-warning .alert-title {
  color: #EC221F;
}

.alert-notification.alert-warning .alert-icon {
  color: #EC221F;
}

/* Info Alert */
.alert-notification.alert-info {
  background-color: rgba(25, 118, 210, 0.2);
  border-color: #1976D2;
  color: #1976D2;
}

.alert-notification.alert-info .alert-title {
  color: #1976D2;
}

.alert-notification.alert-info .alert-icon {
  color: #1976D2;
}

/* Success Alert */
.alert-notification.alert-success {
  background-color: rgba(56, 142, 60, 0.2);
  border-color: #388E3C;
  color: #388E3C;
}

.alert-notification.alert-success .alert-title {
  color: #388E3C;
}

.alert-notification.alert-success .alert-icon {
  color: #388E3C;
}

/* Error Alert */
.alert-notification.alert-error {
  background-color: rgba(211, 47, 47, 0.2);
  border-color: #D32F2F;
  color: #D32F2F;
}

.alert-notification.alert-error .alert-title {
  color: #D32F2F;
}

.alert-notification.alert-error .alert-icon {
  color: #D32F2F;
}

/* Responsive Design */
@media (max-width: 768px) {
  .alert-notification {
    padding: 12px;
    gap: 10px;
  }

  .alert-title {
    font-size: 14px;
  }

  .alert-description {
    font-size: 14px;
  }

  .alert-icon {
    width: 18px;
    height: 18px;
  }
}
