
@import url('https://fonts.googleapis.com/css2?family=Overlock&effect=outline');

body {
  background: #fff;
  color: #333;
  font-family: 'Overlock', sans-serif;
  color: white;
}
h1 {
  font-size: 2.5rem;
  margin-bottom:1rem;
  text-align: center;
   background: var(--accent-color, #79addc);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 1rem 0;
}
.text1 {
   background-color:rgb(178 215 249);
}
.blog-card {
  background-color: #ffee93;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.blog-card:hover {
  background-color: #ffc09f;
  transform: translateY(-5px);
}

.back {
  background: var(--accent-color, #79addc);
}
.submit{
 background: var(--accent-color, #79addc);
}

.square{
  width: 100px;
  height: 100px;
  background-color: #af63be;
}

.textbox{
   background: var(--accent-color, #79addc);
}
.box
{
    display: flex;
    flex-direction: column;
    background: #fff;
    min-width: 80vw;
    margin-top: 15px;
    min-height: 65vh;
    align-items: center;
    align-content: center;
}
.inner_box
{
    display: flex;
    background-color: #000000;
    color:white;
    text-shadow: 2px 2px 0px black;
    min-width: 80vw;
    max-height: 5vh;
    min-height: 5vh;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    margin-right: 15vw;
    margin-left: 10vw;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0px 10px 20px #1a002c;
}
.MyText{
  float: left;
  margin-left: 10px;
  align-self:flex-start;
  justify-self: left;
}

.MyText3{
  margin-left: 20px;
  align-self:flex-start;
  justify-self: left;
}
.accordion {
   background: var(--accent-color, #79addc);
 background: var(--accent-color, #79addc);
 color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.active, .accordion:hover {
 background: var(--accent-color, #6799c6);
}
.accordion:after {
  content: '\02795'; 
  font-size: 13px;
   background: var(--accent-color, #79addc);
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; 
}

.buttons{
  color: inherit;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 20px;
  display: inline-block;
  font-family: sans-serif;
  transition: all 0.1s;

}

.acc {
 background: var(--accent-color, #79addc);
  background: var(--accent-color, #79addc);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  align-self: end;
  border: none;
  outline: none;
  transition: 0.4s;
}
.active, .acc:hover {
   background: var(--accent-color, #79addc);
}
.panel {
  padding: 0 18px;
   background: var(--accent-color, #5a9fdb);
  width:98%;
  display: flex;
  overflow: hidden;
  justify-items: left;
   display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .panel li {
    list-style: none;
  }
  .panel .buttons {
  display: inline-block; 
  width: auto !important;
}
.acc:after {
  content: '\02795'; 
  font-size: 13px;
 background: var(--accent-color, #79addc);
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; 
}
.text2 {
  width: 800px;
  margin-left: 20px;
  display: block; 
  justify-self: left;
  background: var(--accent-color, #79addc);
  border: 2px solid white;
  color: white;      /* optional: makes the text inside white */
  background: var(--accent-color, #79addc);
}
.New {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color, #87bae7);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: sans-serif;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Fused header + navbar (same as blog) */
/* Match Blog Header Exactly */
.page-header {
  width: 100%;
  background: var(--accent-color, #79addc);
  text-align: center;
  padding: 0;                 /* must match blog */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-header h1 {
  margin: 0;
  padding: 1.2rem 0;          /* blog uses 1.2rem */
  color: white;
  font-size: 2.5rem;          /* EXACT same as blog */
  line-height: 1;             /* prevents height differences */
}

/* Match Blog Navbar Size */
.navbar {
  background: var(--accent-color, #79addc);
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;          /* blog uses 0.5rem */
  box-shadow: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

.page-header .nav-links {
  display: flex !important;
  gap: 1.5rem !important;          /* same spacing as blog */
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-header .navbar {
  padding: 0.5rem 0 !important;   /* same height as blog */
  width: 100% !important;
  background: var(--accent-color, #79addc) !important;
  display: flex !important;
  justify-content: center !important;
}