/* app/assets/stylesheets/custom_alert.css */

/* Màu trung tính nhẹ nhàng */

.alert-neutral {
  background-color: #f9f9fb;
  border: 1px solid #e0e0e0;
  color: #222;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Bên trong chia layout cho message và button */
.alert-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text ngắn lại, gọn, tránh đè nút */
.alert-message {
  flex: 1;
  margin-right: 12px;
  line-height: 1.5;
  font-size: 14px;
  color: #111827;
}

/* Nút đóng được bọc border nhẹ */
.alert-close-btn {
  background-color: #fff;
  border-radius: 5px;
  width: 26px;
  height: 26px;
  line-height: 22px;
  text-align: center;
  font-size: 16px;
  color: #444;
  transition: all 0.2s ease;
}

.alert-close-btn:hover {
  background-color: #f1f1f1;
  border-color: #ccc;
  color: #000;
}
.alert-dismissible .close {
  right: 0px;
  border: 1px solid #b1b0b0;
}
