/*I [Samira] will integrate this into styles.css but for testing
I put this in a seperate file so that I could debug*/


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

:root {
  --primary-color: #0d62e9;
  --primary-color-dark: #FF4742;
  --secondary-color: #22796e;
  --text-dark: #2a2635;
  --text-light: #6b7280;
  --bg-color: #f9efe3;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
}

#footer {
  display: flex;
  justify-content: center;
  background-color: lightgray;
  margin-top: 0px;
  padding: 10px 0;
  ;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav__content {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

nav .logo a:hover {
  color: var(--primary-color-dark);
}

nav .checkbox {
  display: none;
}

nav input {
  display: none;
}

nav .checkbox i {
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}

ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: left 0.3s;
}

nav ul li {
  position: relative;
}

nav ul li:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.dropdown li {
  display: block;
}

.dropdown li a {
  padding: 10px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.dropdown li a:hover {
  color: var(--primary-color);
}

ul li a {
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

ul li a:hover {

  color: var(--primary-color);
}

.section {
  background-color: var(--bg-color);
  margin-top: 30px;
  padding: 10px;
}

.container {
  width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

h2 {
  color: #333;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  z-index: 1;
  position: relative;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  background-color: #f5d6d6;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 2px solid #f4b4a9;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #77838f;
}

/* Footer styling */
#footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

#footer .footer__nav {
  margin-bottom: 10px;
}

#footer .footer__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#footer .footer__nav ul li {
  display: inline;
}

#footer .footer__nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

#footer .footer__nav ul li a:hover {
  color: #007bff;
}

.footer__line {
  border: 0;
  height: 3px;
  background: #333; /* Change color as needed */
  margin: 20px 0; /* Adjust margin as needed */
}

#footer .footer__credit {
  font-size: 0.9em;
  color: #666;
}

#footer .footer__credit a {
  color: #007bff;
  text-decoration: none;
}

#footer .footer__credit a:hover {
  text-decoration: underline;
}