/* Welcome Messages - Simple Theme */

/* Main welcome message styling */
.messages--status {
  padding: 1rem;
  margin: 1rem 0;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  color: #155724;
  font-size: 0.9rem;
}

/* Alert styling */
.alert.alert-success,
#breadcrumb-messages .alert-success,
.region-highlighted .alert-success {
  padding: 1rem;
  margin: 1rem 0;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  color: #155724;
}

/* Faculty specific styling */
.messages--status.welcome-faculty,
.alert-success.welcome-faculty {
  background-color: #d4edda;
  border-color: #c3e6cb;
  border-left-color: #28a745;
  color: #155724;
}

/* Simple icons */
.messages--status::before {
  content: "✓ ";
  margin-right: 0.5rem;
}

.messages--status.welcome-faculty::before {
  content: "📚 ";
}

/* Close button */
.btn-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  margin-left: 1rem;
  opacity: 0.7;
}

.btn-close:hover {
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .messages--status,
  .alert {
    margin: 0.5rem 0;
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}