
.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}



body {
  background-color: #86A6B0;
  color: black;
  font-family: Verdana;
  margin: 0;
  padding: 0;
}

#header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

#header img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  cursor: pointer;
}

#NameTitle {
  font-family: "Libre Baskerville", serif;
  margin-left: 12px;
}

#NameSubTitle {
  font-family: "Barlow Condensed", sans-serif;
  margin-left: 10px;
}

#blog {
  margin-left: auto;
  display: flex;
}

#blog svg {
  height: 28px;
  width: 28px;
  transition: transform 0.2s ease;
}

#blog svg:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#submit {
  margin-left: 25px;
  display: flex;
}

#submit svg {
  height: 28px;
  width: 28px;
  transition: transform 0.2s ease;
}

#submit svg:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#youtubeicon {
  margin-left: 25px;
  margin-right: 0;
  padding-right: 20px;
  display: flex;
  align-items: center;
}

#youtubeicon svg {
  height: 36px;
  width: 36px;
  fill: #FF0000;
  transition: transform 0.2s ease;
}

#youtubeicon svg:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#themeToggle {
    margin-left: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-right: 40px;
  }
  
  #themeToggle svg {
  height: 28px;
  width: 28px;
  transition: transform 0.2s ease;
}

  #themeToggle .icon-hover {
    display: none;
  }

  #themeToggle:hover .icon-default {
    display: none;
  }

  #themeToggle:hover .icon-hover {
    display: inline;
  }

  body.light-mode {
    background-color: #86A6B0;
    color: #000000;
  }

  body.dark-mode {
    background-color: #39464A;
    color: #000000;
  }
  
  body.dark-mode #header {
  background-color: #E3E6E6;
}

.icon-default.dark {
  display: none;
}

.icon-default.light {
  display: inline;
}

body.dark-mode .icon-default.light {
  display: none;
}

body.dark-mode .icon-default.dark {
  display: inline;
}

#date, #time {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}

#dateText, #timeText {
  color: #1f1f1f;
}

#content {
  margin-top:10px;
}

select {
  margin-left: 5px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

#title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 15px;
}

#Year {
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 15px;
}

#Month {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}


.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}

.day-label {
  font-weight: bold;
  text-align: center;
  padding: 10px;
  background-color: #ddd;
}

.day-label a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  display: block;
}

.day {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 150px; /* Larger boxes */
  padding: 10px;
  vertical-align: top;
  overflow-y: auto;
  box-sizing: border-box;
  font-size: 1rem;
}

.day:focus {
  outline: 2px solid #007bff;
}

.empty {
  background-color: transparent;
  border: none;
}

#calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

#calendar-header button {
  font-size: 1.5rem;
  background-color: #4da6ff; /* Light blue */
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#calendar-header button:hover {
  background-color: #1e90ff;
}

.month-year-wrapper {
  text-align: center;
  flex-grow: 1;
}

#Month {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
}

#year {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 5px;
}


.day strong {
  display: block;
  margin-bottom: 5px;
}

.sun-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: grey;
  color: white;
  padding: 4px;
  margin-top: 10px;
  border-radius: 0;
}

.sun-start {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.sun-end {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sun-symbol {
  font-size: 1.2rem;
}



