/* Shared CSS Variables and Base Styles for RICH Dashboard Pages */

/* CSS Variables */
:root {
  --rich-purple: #4b006e;
  --rich-yellow: #efbf04;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #bdbdbd;
  --gray-dark: #4f4f4f;
  --text-color: #333333;
  --footer-bg: #333333;
  --bg-color: #e5e5ea;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --blue-button: #29ABE2;
  --brown-button: #77685d;
  --sub-text-color: #666666;
  --bold-grey: #333333;
  --light-grey: #e5e5ea;
  --gray: #666666;
  --heroes-gradient: linear-gradient(90deg, rgba(75, 0, 110, 0.9) 0%, rgba(75, 0, 110, 0.7) 100%);
  --institute-gradient: linear-gradient(90deg, rgba(239, 191, 4, 0.9) 0%, rgba(239, 191, 4, 0.7) 100%);
}

/* Base Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

