/* Shared styles for Coordinal Research website */

/* Import coordinal color variables */
@import url('coordinal_colors.css');

:root {
  --primary-color: #21372b;
  --secondary-color: #00290c;
  --text-color: #000000;
  --light-bg: #fff8e4;
  --font-family: 'Linux Libertine', 'DejaVu Serif', 'Liberation Serif', Georgia, serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.2;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: var(--light-bg);
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  /* background-color: var(--secondary-color); */
  /* color: white; */
  /* padding: 1rem 0; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo a {
  color: white;
  text-decoration: none;
}

h1 {
  color: var(--primary-color);
  margin-top: 2rem;
  font-size: 4rem;
  white-space: nowrap;
}

/* Allow h1 to wrap on smaller screens */
@media (max-width: 768px) {
  h1 {
    white-space: normal;
  }
}

h2 {
  color: var(--secondary-color);
}

/* Navigation link styles */
header nav {
  margin-top: 1.5rem;
}

nav .nav-link {
  font-size: 1.5rem;
}

/* Footer styles */
footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
} 

.user-info {
    font-size: 1.2rem;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #666;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-container .breadcrumbs {
    margin-bottom: 0;
}

/* Add notification styles */
.requests-notification {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #333;
    margin-right: 5px;
}

.requests-notification:hover {
    color: #0d6efd;
}

.requests-notification .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

.requests-notification i {
    font-size: 1.2rem;
}