@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');

::-webkit-scrollbar {
  width: 0; /* Adjust the width as needed */
}

a:hover{
  outline: none;
}

p {
  font-size: 1rem;
}

li {
    padding: 3px;
    font-size: 1rem;
}

.parent-paragraph {
    font-size: 1rem; /* Set font size for the parent <p> tag */
}

.parent-paragraph ul,
.parent-paragraph li {
  font-size: inherit; /* Inherit font size from parent <p> tag */
}

/* For header only */
@media (min-width: 768px) {
  .navbar-custom {
    padding-left: 20px;
    padding-right: 5px;
  }
  /* For sizing the right side of items in header. */
  .nav-item{
    font-size: 1.4rem;
  }
}

.selected {
  background-color: #eee;
}

/* Style for mobile devices */
@media screen and (max-width: 768px) {
  .container {
    flex-wrap: wrap; /* Allow flex items to wrap */
  }
  .content {
    padding-block: 6rem;
    min-height: 100vh;
    /* font-size: 1.1475rem; */
  }
  .sidebar {
    display: none; /* Hide the sidebar */
  }
  .flex-wrapper {
    flex-basis: 100%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: start; /* align the text to the left for smaller screens */
  }
}

footer {
  padding-top: 15px;
  padding-bottom: 5px;
  height: 50px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  color: #1e293b;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  background-color: #f8fafc;
}
footer a{
  color: #0891b2;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #0891b2;
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}

/* Fresh Header Gradient */
/* Fresh Header Gradient - Now Midnight Slate */
.bg-steel {
  background: #0f172a;
}

.back-button {
  color: #1e293b;
  box-sizing: border-box;
  border: 2px solid #0891b2;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  border-color: #22c55e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

img {
  max-inline-size: 100%;
  block-size: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

a:focus-visible {
  outline: 3px solid;
}