/*
 Theme Name:   TeacherPress Theme
 Theme URI:    https://teacherpress.net
 Author:       CompleteWebTech LLC
 Author URI:   https://completeweb.tech
 Description:  A custom theme for TeacherPress with a modern header design.
 Version:      1.0
 Text Domain:  teacherpress
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  width: 100%;
  height: 55px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-link {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #4D9DED;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1E70C1; /* Darker blue on hover for interactivity */
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex; /* Arrange links left-to-right */
  gap: 20px; /* Space between menu items */
}

.nav-menu > li {
  list-style: none;
}

.content {
  flex: 1 0 auto;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  width: 100%;
  flex-shrink: 0;
}
