/**
 * @file
 * Global styling for UUM React theme.
 */

/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* React root container */
#root {
  min-height: 100vh;
}

/* Ensure Drupal messages are visible */
.messages {
  margin: 1rem;
  padding: 1rem;
  border-radius: 4px;
}

.messages--status {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.messages--warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.messages--error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

