/* Add styles here */
* {
    color: whitesmoke;
    font-family: 'Courier New', Courier, monospace;
    margin: 0rem;
    

}

[contenteditable="true"] {
    border: 1px dashed gray;
    padding: 5px;
}

#home_body {
    background-color:#003135;
    
}

/* glossy starts */


/* glossy ends */

#nav_bar {
    display: flex;
    justify-content: center;  
    align-items: center;
    background-color: #0a2342cc;
    height: 5rem;
    backdrop-filter: blur(5px);
    z-index: 1;
}

#nav_bar > a {
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: center;  
    align-items: center;
    width: 100%;
    color: whitesmoke;
    height: 100%;
    transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, border-bottom 0.5s ease-in-out;
}

#nav_bar > a:hover:not(.active) {
    background: linear-gradient(90deg, #274472 60%, #406882 100%);
    
    border-radius: 0.4rem 0.4rem 0 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(36, 59, 85, 0.25);
    border-bottom: 3px solid #2f7396;
    text-shadow: 0 1px 4px #1e2a38;
    z-index: 0;
}

#nav_bar > a:visited {
    color: goldenrod
}

#nav_bar > .active , #nav_bar > a:active {
    background: linear-gradient(90deg, #243b55 60%, #1e2a38 100%);
    color: #fff;
    border-bottom: 3px solid #66ccff;
    box-shadow: 0 6px 18px rgba(102, 204, 255, 0.18);
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px #1e2a38;
    transition: none;
}


.main_logo {
    height: 25%;
    width: 25%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;

}

i {
    display: flex;
    width: 3rem;
}

#nav_bar > i > a:hover {
    background-color: darkslategray;
}
nav {
    position: relative;
    z-index: 0;
}

.sidebar_wrapper {
    position: relative;
    display: contents;
   
}

#mySidebar {
    z-index: 6;
    width: 100%;
    display: flex;
    overflow-x: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    border-radius: 0.2rem;
    background-color: #0d2f45e1; /* match dark theme */
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 10dvh;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sidebar-section h4 {
    color: #b8eaff; /* lighter blue for headings */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.sidebar-section button {
    border: none;
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
}

.sidebar-section i {
    color: #66ccff;
    padding: 0;
    margin: 0;
}

.sidebar-section:hover {
    background-color: #183b4f; /* subtle dark hover */
}

.sidebar-section {
    padding: 0.5rem;
    width: 50%;
    margin-bottom: 1rem;
    border-radius: 0.3rem;
    background-color: rgba(20, 40, 60, 0.85); /* dark glassy */
}

.sidebar-section:not(.sidebar-banner) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar-item {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    width: max-content;
    max-width: 50%;
    margin-left: 4px;
    height: 25%;
    color: #e0f7fa;
    background: transparent;
}

.sidebar-item i {
    font-size: calc(30% * 2.5);
    color: #66ccff;
}

.sidebar-item strong {
    font-size: calc(22.8% * 2.9);
    display: block;
    color: #fff;
}

.sidebar-item strong > a {
    color: #4fd4d9;
    font-weight: 600;
}

.sidebar-item p {
    margin: 0.1rem 0 0;
    font-size: calc(20.4% * 2.9);
    color: #b3e0ef;
}

.sidebar-banner {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 30%;
    background-color: #a2a7b78a;
    backdrop-filter: blur(5px);
    margin-bottom: 0;
   
}

.sidebar-banner > div:first-child {
    height: 45%;
   
}

.sidebar-banner > div:first-child > img {
    height: 100%;
    width: 20%;
}

.sidebar-banner > div:last-child {
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center
}

.sidebar-banner > div:last-child p {
    color: black;
    font-size: x-small;
    font-family: 'Courier New', Courier, monospace;
}

.sidebar-scrollable {
    background-color: transparent;
    width: 100%;
    overflow-y: scroll;
    max-height: 30dvh;
    display: flex;
    overflow-x: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    border-radius: 0.2rem;
    justify-content: flex-start;
    align-items: flex-start;
    scrollbar-color: rgba(244, 248, 249, 0.337) rgba(255,255,255,0.05);
    
    scrollbar-width: thin;
    padding: 1.5rem;

}


a:visited {
    color: goldenrod;
    text-decoration: none;
}

a:link {
    color: whitesmoke;
    text-decoration: none;
}

a:hover {
    color: blue;
}

#arrow_toggle_up {
    display:inline;

}

#arrow_toggle_down {
    display:none;
}


.fa-solid, .fa-regular {
    background-color: transparent;
    
}

.menu_button {
    background-color: #27bed877;
    border: none;
    height: 100%;
    z-index: -1;
    cursor: pointer;
    
}
.menu_button:hover  {
    background-color: rgba(102,204,255,0.15);
}
.menu_button i {
    font-size:large;
}


* {box-sizing:border-box}

#slideshow_projected {
    background-size: cover;


  }
#slideshow_projected_about {
    background-image: url(https://images.pexels.com/photos/4925676/pexels-photo-4925676.jpeg);
    background-size: cover;
    
  }

#slideshow_projected_schedule {
    background-image: url(./images/calendar.jpg);
    background-size: cover;
    
  }


#slideshow_projected_gpa_calc {
    background-image: url(https://images.unsplash.com/photo-1457369804613-52c61a468e7d?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    
  }

  .main_div {
    background: transparent;
    position: relative;

  }

 #nav_fixed {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 0.7rem;
    background-color: rgb(77, 93, 105);
    display: none;
 }

 #sub_load_div {
    background-color: rgba(171, 133, 56, 0.901);
    height: 100%;
    width: 0%;
    transition: 0.7s all ease-in-out;

 }
  .main_div > a > img {
    background: transparent;
  }

  .slideshow_container {
    height: 25rem;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    scrollbar-width: none;
    z-index: 0;
    
  }

.slideshow_container > div > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
 
}
.prev_button, .next_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24, 34, 54, 0.7);
    border: none;
    color: #e0f7fa;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(36, 59, 85, 0.10);
    cursor: pointer;
    z-index: 2;
    transition: 
        background 0.18s cubic-bezier(.4,2,.6,1),
        box-shadow 0.18s cubic-bezier(.4,2,.6,1),
        color 0.18s cubic-bezier(.4,2,.6,1),
        transform 0.12s cubic-bezier(.4,2,.6,1);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.prev_button:hover, .next_button:hover, 
.prev_button:focus-visible, .next_button:focus-visible {
    background: #274472;
    color: #fff;
    box-shadow: 0 4px 16px 0 #27447233;
    transform: translateY(-50%) scale(1.07);
}

.prev_button {
    left: 1.2rem;
}

.next_button {
    right: 1.2rem;
}

.prev_button:active, .next_button:active {
    background: #1e2a38;
    color: #fff;
    box-shadow: 0 1px 4px #1e2a3844;
    transform: translateY(-50%) scale(0.97);
}

#today_in_history_header {
    text-align: center;
    background: linear-gradient(90deg, #274472 0%, #406882 100%);
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    margin: 1rem auto 0.8rem auto;
    max-width: 70%;
    box-shadow: 0 1px 6px rgba(30, 60, 114, 0.05);
    backdrop-filter: blur(1px);
    opacity: 0.93;
}

.slideshow {
    height: inherit;
    width: 100%;
    object-fit: contain;
    

    
}


.fade {
    animation-name: slide;
    animation-duration: 3s;

}

.fade2 {
    animation-name: slide2;
    animation-duration: 3s;
}

.fade3 {
    animation-name: opacity;
    animation-duration: 3s;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    10% {
        transform: translateX(-100%);
    }
    20% {
        transform: translateX(0%);
    }
    30% {
        transform: translateX(0%);
    }

}
@keyframes slide2 {
    0% {
        transform: translateX(100%);
    }
    10% {
        transform: translateX(100%);
    }
    20% {
        transform: translateX(0%);
    }
    30% {
        transform: translateX(0%);
    }

}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }

}

#dots_div {
    display: flex;
    position: absolute;
    bottom: 2%;
    left: 25%;
    right: 25%;
    justify-content: center;
    margin-top: 1rem;
    background-color: transparent;
}

#dots_div > span {
    background-color: transparent;
}

.text_slideshow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(10, 24, 48, 0.65);
    color: #f5f5f5;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
    transition: max-height 0.5s cubic-bezier(.4,2,.6,1), box-shadow 0.5s, background 0.5s;
    max-height: 2.5rem;
    overflow-y: hidden;
    z-index: 2;
    mask-image: linear-gradient(to top, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
    scrollbar-color: rgba(24, 129, 137, 0.337) rgba(255,255,255,0.05);
}

.text_slideshow:hover {
    max-height: 15rem;
    background: rgba(10, 24, 48, 0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    mask-image: none;
    -webkit-mask-image: none;
    overflow-y: auto;
}

.text_slideshow > p {
    background: transparent;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: inherit;
}

.motivation_main {
    background-image: url(https://preview.redd.it/s15ghvj3cixb1.png?auto=webp&s=b8f528289ccf970c1ed6de45512104fb42074938);
    background-attachment: fixed;
    /* background-position: center; */
    background-size: cover;
    height: 30rem;
    background-repeat: no-repeat;
    align-content: center;

}
.motivation_main_about {
    background-image: url(https://images.pexels.com/photos/4925676/pexels-photo-4925676.jpeg);
    background-attachment: fixed;
    height: 30rem;
    background-size: cover;
    background-repeat: no-repeat;
    align-content: center;

}
.motivation_main_schedule {
    background-image: url(./images/calendar.jpg);
    background-attachment: fixed;
    
    height: 30rem;
    background-size: cover;
    background-repeat: no-repeat;
    align-content: center;

}



.motivation_main > h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background-color: transparent;
    backdrop-filter: blur(5px);
    font-family: 'Courier New', Courier, monospace;
}
.motivation_main_about > h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background-color: transparent;
    backdrop-filter: blur(5px);
    font-family: 'Courier New', Courier, monospace;
    color: darkgray;
}

.buttons_top.inside {
      display: flex;
      gap: 2rem;
      padding: 3rem 5%;
      justify-content: space-between;
      background: linear-gradient(to bottom right, #0e1b2a, #1a2c46);
      border-radius: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      flex-wrap: wrap;
    }

    .motivation_divs {
      flex: 1;
      background: rgba(255, 255, 255, 0.03);
      padding: 2rem;
      border-radius: 1rem;
      color: #f0f0f0;
      box-shadow: inset 0 0 0.5px rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      transition: 0.3s ease;
      min-width: 280px;
    }

    .motivation_divs:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    }

    .motivation_divs a {
      color: inherit;
      text-decoration: none;
      display: block;
    }

    .motivation_divs i {
      float: right;
      margin-bottom: 1rem;
    }

    .motivation_divs h2 {
      font-size: 1.4rem;
      margin: 0 0 1rem 0;
    }

    .motivation_divs p {
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0.9;
    }

.glossy {
    width: 100%;

}

.main_body_div {
    overflow-y: hidden;
    background-color: transparent;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    
    
}



.main_body_div > div > p {
    background: transparent;
    margin-top: 1rem;
    text-align: justify;
    
}

.labeled-divider {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ccc;
  border-bottom: 1px solid #333;
  line-height: 0.1em;
  margin: 4rem 0;
}

.labeled-divider span {
  background: #121d2f;
  padding: 0 1rem;
}

.left, .right {
  float: left;
  width: 50%;
  padding: 2rem;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.02); /* soft glow for contrast */
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.08);
  color: #eaeaea;
}

/* Optional visual separation */
.left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.left > h2 {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.75rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.right h2,
.right h4 {
  color: #ffffff;
}

/* Make sure floats don’t collapse container */
.container::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .left, .right {
    width: 100%;
    float: none;
    margin-top: 2rem;
  }
}


.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  min-height: 100vh;
  background: radial-gradient(at top left, #0e0f1a, #090a12);
  color: whitesmoke;
  font-family: 'Inter', sans-serif;
  gap: 2rem;
 
}

.hero-section_about {
    background-image: url(./images/pexels-pixabay-270873.jpg);
    background-position: center;
}

.hero-header_about {
    background-color: rgba(143, 188, 183, 0.241);
    backdrop-filter: blur(5px);
    box-shadow: 0px 10px 20px rgba(27, 30, 113, 0.436);
    border-width: 2px;
    border-style: solid;
    border-color: #0e0f1a;
    border-radius: 10rem 1rem;
    overflow: hidden;
    width: max-content;
    margin-bottom: 1rem;
    padding: 1rem;
}

.hero-header_about > h1 {
    font-size: small;
    color:black;
}

.hero-content {
  max-width: 100vh;
}


.hero-content h1 {
  font-size: 4vw;
  padding: 2rem 2rem 0rem 2rem;
  
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: #ff2d55;
  color: white;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ccc;
  color: whitesmoke;
}

.btn:hover {
  opacity: 0.85;
}

.hero-visual img {
  width: 400px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px #00f6ffb0);
  animation: float 3s ease-in-out infinite;
}



.hero-visual_about img {
  width: 400px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px #00ff1ab0);
  animation: float_around 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes float_around {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(8px, -8px); }
    50%  { transform: translate(0, -16px); }
    75%  { transform: translate(-8px, -8px); }
    100% { transform: translate(0, 0); }
}

.glassified {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out; 
}



.center {
    padding-right: 1rem;
    padding-left: 1rem;
}
.center > p {
    text-align: justify;
}

.center > h2 {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 5rem;
    
}

.main_body {
    /*background-image: linear-gradient(to right, #0fa4af53 , rgba(26, 63, 63, 0.07) ); */
    border-bottom-left-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    height: max-content;
    background-image: url(./images/freepik__upload__15485.png);
    
}
.main_body_about {
    
    border-bottom-left-radius: 1.5rem;
    overflow-y: hidden;
    height: 100%;
    height: max-content;
    background-image: url(./images/freepik__upload__89620.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}
.main_body_schedule {
    /*background-image: linear-gradient(to right, #0fa4af53 , rgba(26, 63, 63, 0.07) ); */
    border-bottom-left-radius: 1.5rem;
    overflow-y: hidden;
    height: 100%;
    height: max-content;
    background-image: url(./images/planner.jpg);
    background-position: 50% 30%;
    
}

hr {
    margin-top: 5rem;
    margin-right: 25%;
    margin-left: 25%;
    border-width: 0.1rem;
}

/* all internal images */

#int_img_div {
    background-color: transparent;
    height: 25rem;
    margin-top: 2rem;
}

#int_img_div > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.stories {
    width: auto;
    overflow: hidden;
    height: 24rem;
    display: inline-block;
    margin: 0.3rem;
    margin-right: 0rem;
    border-width: 0.2rem;
    border-style: groove;
    box-shadow: -0.5rem 0.5rem #003135;
    transition: 0.5s all ease-in;
    position: relative;
    background-color: transparent;
    
}

.stories:hover {
    transform: scale(1.05);
    box-shadow:none;
}

.stories_container {
    margin-top: 1rem;
    background-color: transparent;
    padding-top: 0.5rem;
    padding-left: 6%;
    padding-right: 1rem;
    align-items: center;
    padding-bottom: 1rem;
}



.news_img {
    position: absolute;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    width: 2.3rem;
    border-radius: 1rem;
    
}

.text_shadow > img {
    position: absolute;
}

.news_text {
    position: absolute;
    left: 4rem;
    top: 0.3rem;
    text-align: left;
    color: #786666;
    
}

.txt {
    top: 1.5rem;
    font-size: 0.6rem;
    
}



.glossy {
    background-color: rgba(0, 0, 0, 0.115);
    backdrop-filter: blur(6);
}


.top {
    background-color:rgba(0, 255, 255, 0.091);
    overflow: hidden;
    
}

.text_shadow {
    backdrop-filter: blur(0.5);
}

.bottom {
    position: absolute;
    bottom: 0;
    height: 4.3rem;
    mask-image: linear-gradient(to top, transparent, black);
    transition: 0.5s all ease-in-out;
}

.bottom:hover {
    height: 13rem;
    background-color:rgba(0, 255, 255, 0.205);
    mask-image: none;
    
}

.bottom_text_scrollable {
     overflow-y: auto;
  padding: 0.5rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
  scrollbar-color: #00f2ff #004a4f;
  font-size: 0.75rem;
  line-height: 1.4;
}

.bottom_text_scrollable:hover {
    height: 7rem;
    
}

.bottom > h4 {
    text-align: center;
    margin-bottom: 1rem;
    background-color: transparent;
}

.bottom > p {
    text-align: justify;
}


.top > img, h4, p {
    background-color: transparent;
    
}

.stories:hover .class_links{
    transform: scale(1.3);
}

.back_to_top {
    position: sticky;
    bottom: 2rem;
    margin-left: 90%;
    background-color: rgba(35, 71, 66, 0.9);
    color: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


.back_to_top:hover {
    background-color: #289289;
    transform: scale(1.1);
}

.back_to_top i {
    color: white;
    margin: 0;
    width: max-content;
    padding: 0.7rem;
    font-size: 1.1rem;
 
}


#footer {
    height: 40rem;
    background-color: #0D1E23;
    position: relative;
    padding-top: 2rem;
    backdrop-filter: blur(5px);
    
}
/* #footer_about {
    height: 40rem;
    background-image: url(https://img.freepik.com/free-vector/watercolor-emerald-background_23-2150241014.jpg?t=st=1718673022~exp=1718676622~hmac=3728ee6edb72d45c8673322022490aa086b8217247ce27ba5c3cb6b61bdfdd9c&w=900);
    opacity: 0.60;
    background-color: #003135;
    
    position: relative;
    padding-top: 2rem;
    
} */
#footer_schedule {
    height: 40rem;
    
    opacity: 0.60;
    background-color: #003135;
    
    position: relative;
    padding-top: 2rem;
    
}

.footer_div {
    height: 100%;
    width: 33.3%;
    position: absolute;
    padding-left: 0.5rem;
    padding-right: 2%;
}

.footer_left {
    left: 0;
     background-color: transparent; /*rgba(255, 0, 0, 0.104); */
}

.footer_left li > a:hover {
    color: rgb(251, 71, 71);
    transition: all 0.5s;
}

.footer_right {
    right: 0;
    background-color: transparent; /* rgba(255, 255, 0, 0.104); */
}

.footer_center li > a:hover {
    color: rgb(99, 99, 251);
    transition: all 0.5s;
}


.footer_center {
    left: 33.35%;
     background-color: transparent; /*rgba(238, 130, 238, 0.104); */
     
}

.footer_right li > a:hover {
    color: rgb(210, 210, 244);
    transition: all 0.5s;
}

.footer_header {
    font-size: 80%;
    position: absolute;
    top: 0.85rem;
    backdrop-filter: blur(1000);
    z-index: 1;
    background-color: rgb(35,71,66);
    color:antiquewhite;
}

.footer_rule {
    position: absolute;
    margin: 0;
    top: 1.2rem;
    width: 90%;
    z-index: 0;
}

.footer_body {
    width: 50%;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 2.2rem;
    background-color: transparent;
    
}

.footer_body_left {
    top: 1.7rem;
    
}

.footer_div div {
    float: inline-start;
}


.footer_body ul {
    list-style-type: none;
  }

.bottom_logo_div {
    position: absolute;
    left: 0rem;
    background-image: url(/images/main_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 20%;
    background-color: transparent;
}


.bottom_logo_text {
    position: absolute;
    right: 1.2rem;
    text-align: left;
    height: 100%;
    width: 79%;
    display: flex;
    align-items: center;
    font-size: 150%;
    font-weight: bolder;
    font-style: oblique;
    background-color: transparent;
    
}

.bottom_logo_text a, a:link, a:visited, a:active {
    color: whitesmoke;
    background-color: transparent;
}

.bottom_logo_text h1 {
    background-color: transparent;
    
}

.bottom_reserved {
    position: absolute;
    top: 85%;
    left: 20%;
    text-align: left;
    background-color: transparent;
}




.bottom_right_texts {
    margin-top: 0.5rem;
    width: 100%;
    display: block;
    text-align: center;
    background-color: transparent;
    border-left-style: solid;
    border-left-color: whitesmoke;
    padding-left: 2rem;
}

.bottom_right_texts a {
    background-color: transparent;
}

.bottom_right_texts a:hover {
    color: crimson;
    transition: all 0.5s;
}

#associations img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    border: 2px solid lightsteelblue;
    background-color: transparent;
    
}
#social_medias img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    border: 2px solid lightseagreen;
    background-color: transparent;
    
}

.bottom_footer_container {
    height: 50%;
    width: 100%;
    position: absolute;
    bottom: 0%;
    background-color: transparent;
}

.footer_bottom_right {
    position: absolute;
    right: 0;
    width: 30%;
    height: 100%;
    margin-top: 5%;
    background-color: transparent;
    
    

  }

  .footer_bottom_left {
    height: 100%;
    width: 70%;
    background-color: transparent;
    
  }


.footer_hr {
    position: absolute; 
    width:50%; 
    top: 14.9rem;
}

ul a {
    background-color: transparent;
}
  ul li, ul {
    background-color: transparent;
    margin-bottom: 0.3rem;
    
  }


  
.small_screen_img {
    display: none;
}

.optional_hide1 {
    display: block;
}
.optional_hide2 {
    display: none;
}    

.right_not_main {
    width: 30%;
    background: transparent;
    float: right;
    padding: 1rem;
    margin-top: 4rem;
}

.left_not_main {
    width: 70%;
    background: transparent;
}

/* Style for the sides */
#side_container {
  max-width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom, #0d2f45e1 0%, #0a384f 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: whitesmoke;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#side_container h3 {
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  background: linear-gradient(to right, #2d9fd9, #41c0f0);
  color: #fff;
  border-radius: 0.4rem;
  text-shadow: 0 1px 2px #000;
}

.nav_section {
  background-color: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.nav_section:hover {
  background-color: rgba(255, 255, 255, 0.07);
}

.ones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: transparent;
}

.ones li {
  text-align: left;
  font-weight: bold;
  font-size: 0.95rem;
}

.ones li a {
  color: #cbeffd;
  transition: color 0.3s ease;
}

.ones li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.twos {
  background-color: rgba(0, 128, 0, 0.3);
  border-radius: 0.4rem;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.twos:hover {
  background-color: rgba(0, 128, 0, 0.5);
}

.twos i {
  font-size: 0.9rem;
  color: #d0f8e2;
  margin: 0 2px;
}

.bottom_h {
    background-color: whitesmoke;
    display: none;
    
}

.bottom_h a {
    color: black;
    font-family: Georgia, 'Times New Roman', Times, serif;
}






.left_not_main > h2 {
    text-align: center;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

#top_curr_nav {
    background: linear-gradient(90deg, #012a2d 0%, #024e57 100%);
    padding: 0.7rem 1.5rem;
    border-bottom: 2px solid #4fd4d9;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #e0f7fa;
    letter-spacing: 0.7px;
    text-shadow: 0 2px 6px #00000055;
    border-radius: 0 0 0.7rem 0.7rem;
    box-shadow: 0 2px 8px rgba(0, 64, 80, 0.10);
}

#top_curr_nav p {
  margin: 0;
  background: transparent;
}

#top_curr_nav a {
  color: #66ccff;
  text-decoration: none;
  transition: color 0.3s;
}

#top_curr_nav a:hover {
  color: #ffcc99;
  text-decoration: underline;
}



/* Login page */
#login_body {
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#login_body > div {
    background-color: #007BFF;
    height: max-content;
    width: max-content;
    box-shadow: -4px 3px 4px 3px #06003551;
    border-radius: 1rem;
    padding:2rem;   
    display: flex;
}

#login_body input {
    color: black;
    background-color: palegoldenrod;
}
#login_body input:focus {
    background-color: whitesmoke;
}



#forms {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#text_login_div {
    width: 50%;
    height: 100%;
    padding: 1rem;
    
}

#forms button {
    width: 50%;
    padding: 0.5rem;
    background-color: rgb(55, 44, 197);
    border-color: rgb(6, 131, 154);
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

#forms button:hover {
    background-color: rgb(155, 149, 245);
    cursor: pointer;
}

#text_login_div button {
    background-color: transparent;
    border-color: transparent;
    text-decoration: underline;
    padding: 0;
    
}
#text_login_div button:hover {
    color: yellow;

}
#text_login_div button {
    background-color: transparent;
    border-color: transparent;
    text-decoration: underline;
    padding: 0;
    width: max-content;
}
#text_login_div button:hover {
    color: yellow;

}


#login_body form > label,input {
    width: 100%;
}

#sign_up_form {
    display: none;
}

#already_a_member {
    display: none;
}

#status_update {
    margin-top: 1rem;
    width: 15rem;
}

#profile_bar {
    text-align: center;
    height: 100vh;
    z-index: 6;
    position:fixed;
    width: 100%;
    background-color: #00313518;
    padding: 15%;
    display: none;
    backdrop-filter: blur(11px);
}

#profile_bar ul {
    list-style-type: none;
   
}

#profile_bar ul > li > a > button {
    background-color: transparent; 
    border: none;
    cursor: pointer;
    color: whitesmoke;
}

#profile_bar button:hover {
    color: blue;
}

#profile_bar img {
    height: 40%;
    width: 40%;
    border-radius: 50%;
    
}

#profile_bar a {
    cursor: pointer;
}

.fa-xmark {
    position: absolute;
    top: 3rem;
    right: 3rem;
    scale: 2;
    cursor: pointer;
    
}

#profile_img_drop {
    position: absolute;
    top: 0.5%;
    right: 2%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid lightseagreen;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    
}

/* semester_schedule */

#schedule_table_calendars {
    width: 100%;
    overflow: hidden;
}

#schedule_table_calendars p {
    color: black;
    font-family: 'Times New Roman', Times, serif;

}


.calendar_table {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 1px white groove;
    margin-top: 1rem;
    gap: 0;
   
}

.semester_calendar_heading, .year_calendar_heading {
    display: flex;
    justify-content: center;
    background-color: whitesmoke;
    border-bottom: 1px black solid;
}

.days_calendar {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-bottom: 0px;
    justify-content: space-between;
    text-align: center;
    height: max-content;
    overflow: hidden;
    
}

.main_container_calendar {
    display: grid;
    grid-template-columns: 1fr 7fr;
    
    margin-top: 0;

}

.time_calendar {
    overflow: hidden;
    padding-left: 0.2rem;
    background-color: white;
    border-bottom: 1px rgba(79, 119, 147, 0.593) groove;
    margin-top: 0;
}

.time_calendar div {
    color: black;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    
}

.time_calendar  div {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.time_calendar > div:not(:first-child) {
    border-top: 1px groove rgba(0, 119, 128, 0.608);
    
}

.time_calendar > div > div {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.container_schedule {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 0.5em;
    

    
}

.container_schedule > span {
    height: 25%;
    font-size: 60%;
    margin-top: 0.12em;
    width: 100%;
    display: flex;
    justify-content: right;
    
  
}

.container_schedule > span > p {
    background-color: whitesmoke;
    width: max-content;
   
}

.time_calendar > div > div > div {
    font-size: 10px;
    width: 100%;
    color:white;
}

.time_calendar > div > div > div:not(:first-child) {
    border-top: 1px solid black;
    
}

.time_calendar div div div:not(:last-child) {
    border-bottom: 1px solid black;
}
.main_body_calendar, .calendar_table span {
    color: black;  
}




.main_body_calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    overflow: hidden;
    
}

.main_body_calendar div {
    background-color: whitesmoke;
    
    color: black;
}

.sub_body_calendar {
    display: grid;
    grid-template-rows: repeat(12, 1fr);
    /* border: 1px solid green; */
    position: absolute;
    width: 14.2857%;
    
}

.sub_body_calendar > div {
    background-color: transparent;
    border-bottom: 1.5px rgba(166, 153, 153, 0.189) groove;
    position: relative;
    overflow: visible;
    
}

.s_div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    display: block;
    padding: 0;
    background-color: rgba(118, 101, 163, 0.445);
    /* background-color: rgba(163, 101, 101, 0.445); */
}


 .s_div::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    cursor: ns-resize;
    background-color: rgba(26, 109, 169, 0.902);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.s_div::after {
    bottom: -5px;
    left: 0;
}

.sub_body_calendar.dragging_over {
    background-color: rgba(230, 224, 224, 0.832);
}

 .course_icon, .time_icon {
    text-align: center;
    font-size: 60%;
    padding: 0%;
    margin: 0;

}

.drag_icon {
    color: black;
    font-size: 70%;
    margin-left: 5%;
    height: 33.3%;
    margin-top: 2%;
    padding: 0%;
    cursor: grab;
}

#schedule_adding_course {
    height: max-content;
    background-color: whitesmoke;
    margin-top: 0.1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
}

#schedule_adding_course label {
    font-size: small;
    padding: 0.2rem;
    font-family: cursive, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#label_course_name {
    width: 19%;
    color: black;
    height: 20%;
    margin-left: 1%;
}

.label_dropdown {
    color: black;
    width: 9%;
    height: 20%;
    margin-left: 1%;
}

#schedule_adding_course input {
    width: 79%;
    color: black;
    height: 48%;
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
}

#schedule_adding_course .label_times {
    width: 10%;
}

#schedule_adding_course #myInput1, #schedule_adding_course #myInput2{
    width: 35%;
    color: black;
    background-color: whitesmoke;
}

#schedule_adding_course select {
    width: 39%;
    color: black;
    height: 35%;
    margin-right: 1%;
    
}

#schedule_add_course {
    color: black; 
    width: 100%;
    background-color: lightblue;
    cursor: pointer;
    font-family: fantasy;
}

#schedule_table_calendars #first_to_click {
    color: black; 
    width: 100%;
    background-color: rgb(173, 230, 189);
    cursor: pointer;
    font-family: fantasy;
    margin-top: 1rem;
}

#schedule_table_calendars #first_to_click:hover {
    background-color: rgb(129, 171, 225);
}

#schedule_add_course:hover {
    background-color: rgb(129, 171, 225);
    
}

#schedule_scrollable {
    height: 15rem;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
}

#schedule_scrollable button {
    background-color: #0057b36a;
    width: 100%;
    
}

.schedule_semester_names {
    border: 2px solid black;
    width: 10em;
    height: 2em;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    scrollbar-width: none;
    
}

.schedule_year_names {
    border: 2px solid black;
    width: 10em;
    height: 2em;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    
    
}

  
.schedule_semester_names h4 {
    color: black;
    font-size: small;
    text-wrap: nowrap;
    
}
.schedule_year_names h4 {
    color: black;
    font-size: small;
    text-wrap: nowrap;
    
}

.schedule_semester_names p {
    font-size: small;
    font-weight: bolder;
    
}

.schedule_year_names p {
    font-size: small;
    font-weight: bolder;
    
}

.schedule_semester_names > button {
    background-color: rgba(183, 219, 231, 0.7);
    height: 1.2rem;
    display: flex;
    margin-top: 0.05rem;
    margin-left: 0.1rem;
    
}
.schedule_year_names > button {
    background-color: rgba(183, 219, 231, 0.7);
    height: 1.2rem;
    display: flex;
    margin-top: 0.05rem;
    margin-left: 0.1rem;
    
}

.schedule_semester_names > button button {
    margin-left: 0.1rem;
    height: max-content;
    padding: 0;
    border: 1px groove black;
    
    
}
.schedule_year_names > button button {
    margin-left: 0.1rem;
    height: max-content;
    padding: 0;
    border: 1px groove black;
    
    
}



.schedule_new_semester_name {
    display: none;
    height: 0;
    width: 0;
    margin-top: 0.2rem;
    
}
.schedule_new_year_name {
    display: none;
    height: 0;
    width: 0;
    margin-top: 0.2rem;
    
}


.schedule_add_semester {
    width: max-content;
    display: none;
}

.schedule_add_year {
    width: max-content;
    display: none;
}

.schedule_add_semester i, .schedule_extend_input_size i, .schedule_extend_input_size_year i, .schedule_add_year i {
    width: max-content;
}

/* Dark backdrop for loading screen */
.loading-backdrop {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background with opacity */
    z-index: 9999; /* High z-index to ensure it is on top */
    align-items: center;
    justify-content: center;
    
  }
  
  /* Loading content */
  .loading-content {
    color: white;
    font-size: 24px;
    text-align: center;
    margin-top: 50vh;
    margin-left: 45vw;
    
  }
  
  /* Rotating loader */
  .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #2d79abac; /* Blue */
    border-radius: 50%;
    width: 10vw;
    height: 10vw;
    animation: spinning 2s linear infinite;
  }

  .no-scroll {
    overflow: hidden;
  }

  /* Instructions Container */
.instructions-container {
    background-color: #616f735a;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    max-width: 80%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.instructions-container h2 {
    color: #696b7d;
    margin-top: 0;
    text-align: center;
}

.instructions-container ol {
    margin: 0;
    padding-left: 20px;
}

.instructions-container li {
    margin-bottom: 10px;
    font-size: small;
}
  
  @keyframes spinning {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

@keyframes xbutton_clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}
@keyframes xbutton_anticlockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-90deg);
    }
}

@keyframes profile_bar_dropdown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
    
}
@keyframes profile_bar_dropup {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
    
}


/* Gpa calculator page */
.motivation_main_gpa_calc {
    background-image: url(https://images.unsplash.com/photo-1457369804613-52c61a468e7d?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-attachment: fixed;
    height: 30rem;
    background-size: cover;
    background-repeat: no-repeat;
    align-content: center;

}

#footer_gpa {
    height: 40rem;
    opacity: 0.9;
    background-color: #2e5a5e8e;
    position: relative;
    padding-top: 2rem;
    backdrop-filter: blur(8px);
    
}

.main_body_gpa_calc {
    /*background-image: linear-gradient(to right, #0fa4af53 , rgba(26, 63, 63, 0.07) ); */
    border-bottom-left-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    height: max-content;
    background-image: url(./images/2235_generated.jpg);
    
    
}

.motivation_main_gpa_calc > h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background-color: transparent;
    backdrop-filter: blur(5px);
   font-family: 'Courier New', Courier, monospace;
    color: whitesmoke;
}
#table_container {
  width: 95%;
  margin: 2rem auto;
  padding: 1rem;
  background: rgba(0, 51, 51, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 139, 139, 0.15);
  color: black;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 1rem;
}

thead th {
  background-color: rgb(4, 81, 81);
  padding: 0.75rem;
  text-align: center;
  font-size: 1rem;
}


tbody td,
tfoot td {
  padding: 0.6rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

table input,
table select {
  width: 95%;
  padding: 0.4rem;
  border-radius: 0.4rem;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  background-color: #ffffffef;
  color: #333;
}

tfoot input {
  width: 90%;
  padding: 0.4rem;
  border-radius: 0.4rem;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  color: #333;
}

tfoot label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
  font-size: 0.85rem;
}

tfoot button {
  margin: 0.3rem;
  padding: 0.4rem 0.7rem;
  background-color: #007b7f;
  color: white;
  border: none;
  border-radius: 0.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

tfoot button:hover {
  background-color: #005f63;
}

#control_divs2 {
  display: block;
  margin-top: 2rem;
  text-align: center;
}

#control_divs2 label {
  font-weight: bold;
  margin-right: 0.5rem;
}

#years_input2 {
  width: 30%;
  padding: 0.5rem;
  margin-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  background-color: #f8f8f8;
  color: #333;
}

#control_divs2 button {
  margin: 0.3rem;
  padding: 0.5rem 0.8rem;
  background-color: #004f50;
  color: white;
  border: none;
  border-radius: 0.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

#control_divs2 button:hover {
  background-color: #007f80;
}


#semesters {
    width: 40%;
    margin-left: 2rem;
    color: black;
}
option, datalist {
    color: black;
}

#first_semester_choice {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 16px rgba(0, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#first_semester_choice label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ccc;
}

#first_semester_choice input,
#first_semester_choice select {
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  font-size: 0.95rem;
}

#first_semester_choice input:focus,
#first_semester_choice select:focus {
  outline: none;
  border-color: #00cccc;
  box-shadow: 0 0 8px rgba(0, 204, 204, 0.3);
}

#first_semester_choice button {
  width: 100%;
  padding: 0.7rem;
  background: linear-gradient(90deg, #00bcd4, #00838f);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

#first_semester_choice button:hover {
  background: linear-gradient(90deg, #00838f, #006064);
}




.main_body_gpa_calc input, select {
    background-color: whitesmoke;
}


#years {
    height: 5rem;
}



.main_body_gpa_calc button {
    color: black;
    background-color: #0056b3;
    border-color: #007BFF;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}





.main_body_gpa_calc button:hover {
    background-color: #4a94e3;

    
}

#semester_already_exists {
    background-color: rgba(245, 245, 245, 0.893);
    border-color: #96b2d0;
    display: none;
    border-style: groove;
    border-width: 0.2rem;
    width: max-content;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 0.5rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(0.5);
}
#signed_out {
    background-color: rgba(245, 245, 245, 0.893);
    border-color: #96b2d0;
    display: none;
    border-style: groove;
    border-width: 0.2rem;
    width: max-content;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 0.5rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(0.5);
}

#signed_out p {
    color: black;
}
#semester_already_exists p {
    color: black;
}

#semester_already_exists div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;   
}
#signed_out div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;   
}

#semester_already_exists button {
    width: 100%;
    background-color: rgb(55, 44, 197, 0.652);
    border-color: rgb(6, 131, 154);
    color: whitesmoke;
    padding: 0.5rem;

}

#signed_out button {
    width: 100%;
    background-color: rgb(55, 44, 197, 0.652);
    border-color: rgb(6, 131, 154);
    color: whitesmoke;
    padding: 0.5rem;

}

#datas {
    height: 10rem;
    overflow-y: scroll;
    overflow-x: hidden;
}

#datas li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

#datas ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#datas li {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#datas button {
    padding: 0.5rem;
    width: 100%;
    height: max-content;
}

#no_data {
    background-color: rgba(100, 78, 78, 0.392);
    text-align: center;
    margin-top: 15%;

}

#no_data p {
    color: rgb(181, 71, 71);
    font-weight: bolder;
}

/* Account Settings */
#left_main_account {
    width: 50%;
    height: 100vh;
    border-right-width: 0.1rem;
    border-right-style: solid;
    border-right-color: whitesmoke;
}


#left_account_top{
    height: 30%;
    background-color: #0800352f;
    backdrop-filter: blur(5px);
}

#left_account_bottom {
    height: 70%;
    background-color: #00351737;
    backdrop-filter: blur(5px);
    
}

#left_account_bottom_scrollable {
    overflow-y: scroll;
    height: 100%;
    scrollbar-color: #003135bd #05737db7;
    background-color: rgba(0, 30, 139, 0.16);
    backdrop-filter: blur(2px);
    padding: 0.5rem;
    display: block;
   
}

#left_account_bottom_scrollable div {
    height: 2.5rem;
    background-color: rgba(36, 39, 66, 0.171);

}

#left_account_bottom_scrollable button {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
    color: rgba(131, 131, 183, 0.858);

}

#left_account_bottom_scrollable button:hover {
    color: whitesmoke;
    background-color: #0700351e;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


#left_account_bottom_scrollable div:not(:last-child) {
    border-bottom-width: 0.1rem;
    border-bottom-color: whitesmoke;
    border-bottom-style: groove;
}

#right_main_account {
    width: 50%;
    height: 100vh;

}

#right_main_account > div {
    height: 100%;
    margin-left: 1rem;
    overflow-y: scroll;
    scrollbar-color: #003135bd #055f7db7;
   
}

#right_main_account > div > div {
    transform: none;
    display: flex;
    justify-content: center;
    
}

#right_main_account > div > div:first-child {
    align-items: center;
}

#prof_pic_acc {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    border: 2px solid lightseagreen;
    transform: none;
    


}

#prof_pic_acc:hover {
    cursor: pointer;
}


#prof_img_x_button {
    display: none;
    margin-top: 1rem;
}

.right_main_account_main {
    margin-right: 1rem;
    height: max-content;
    background-color: #0833609c;
    padding-top: 0.5rem;
    justify-content: center;
    border: 2px groove darkcyan;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}


.right_main_account_main  div {
    
    padding: 0.2rem;
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    
    
}

.right_main_account_main div:not(:last-child) {
    border-bottom: 0.1rem groove darkcyan;
}

.right_main_account_main button {
    color: black;
}

.right_main_account_main label {
    background-color:#0833609c;
    border-right: 1px solid darkcyan;
    margin-right: 0.5rem;
}

#personal_details_change, #account_settings_change {
    display: none;
}

#personal_details_change {
    position: relative;
}


#delete_account_button {
    margin-top: 2rem;
    color: red;  
    height: max-content;
    width: max-content;
    margin-left: 35%;
    z-index: 0;
    
}

#delete_account_button:hover {
    background-color: red;
    color: white;
    cursor: pointer;
}
#alert_box_background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: rgba(4, 25, 54, 0.205);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 2;
    
}



#alert_box {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 50%;
    top: 50%;
    right: 25%;
    background-color: rgba(135, 185, 246, 0.893);
    border-color: #96b2d0;
    box-shadow: -4px 4px 3px rgba(79, 94, 100, 0.681);
    border-style: groove;
    border-width: 0.2rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 1rem;
    backdrop-filter: blur(0.5);
    
}

#alert_box input::placeholder {
    text-align: center;
    color:#3a444792;
    
}

#alert_box input {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    background-color: bisque;
    border: none;
}

#alert_box input:hover {
    background-color: white;
}

#alert_box button {
    background-color: rgb(249, 134, 134);


}

#alert_box button:hover {
    background-color: red;
}

#alert_box >  p:last-child {
    text-align: center;
    color: red;
}
.glossy-blue-background {
    background: linear-gradient(to bottom, #1e3c72, #2a5298, #6b86b3) padding-box, 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) content-box;
background-clip: content-box, padding-box;
}

#left_account_top button, i {
    color: whitesmoke;
    background-color: transparent;
    border: none;
    margin-top: 10px;

}

#left_account_top button:hover {
    cursor: pointer;
}

#progressBar {
    position: absolute;
    top: 50%;
    left: 25%;
    height: 1rem;
    width: 50%;
    background-color: grey;
    

}

#background_cover {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 132, 255, 0.134);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#background_cover p {
    margin-top: 20%;
}

#internal_load {
    position: absolute;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: green;
    transition: width 0.5s ease-in-out;
}

/* Loading circles */
#loading_container {
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002735;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.first_circle, .second_circle, .third_circle{
    position: absolute;
    height: 10rem;
    width: 4rem;
    border-right: 2px solid red;
    border-left: 2px solid goldenrod;
    border-top: 2px solid green;
    border-bottom: 2px solid green;
    border-radius: 50%;
}

.first_circle {
    animation: spin 2s  infinite linear;
}

.second_circle {
    animation: spin 3s  infinite linear;
}

.third_circle {
    animation: spin 2s reverse infinite linear;
}

.fourth_circle {
    animation: spin 3s reverse infinite linear;
}

#menu_bar_min_screen_acc {
    display: none;
}

#right_custom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#right_custom p {
    color: crimson;
}

@keyframes spin {
    0% {
        transform: rotate3d(1, 1, 1, 0deg);
        
    }
    100% {
        transform: rotate3d(1, 1, 1, 360deg);
       
    }
}

.fa-bars:hover {
    cursor: pointer;
}




  @media screen and (max-width: 759px) {
    #left_main_account {
        height: max-content;
    }


    #left_account_bottom {
        position: relative;
    }

    #loading_container {
        height: 100%;
    }
    #left_account_bottom_scrollable {
        position: absolute;
        top: 0;
        right: 0;
        height: 20rem;
        width: 50%;
        margin-top: 2rem;
        background-color: #00273593;
        backdrop-filter: blur(20px);
        display: none;
        
    }



    #profile_img_drop {
        top: 0.5rem;
    }
    #left_main_account {
        width: 100%;
        z-index: 1;
    }

    #right_main_account{
        width: 100%;
        z-index: 0;
    }

    #menu_bar_min_screen_acc {
        display: flex;
    }

    #main_body_content {
        flex-direction: column;
    }

    .main_body_div {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

    #forms, #text_login_div {
        
        width: 100%;
    }

    #login_body > div {
        display: block;
    }


    .motivation_divs, .left, .right, .left_not_main, .right_not_main {
        width: 100%;
    }

    .optional_hide1 {
        display: none;
    }
    .optional_hide2 {
        display: block;
    }

    .right_not_main {
        float: none;
    }



    .bottom {
        height: 15rem;
        mask: none;
        background-color: #00313583;
    }

    .bottom_footer_container, .footer_div {
        position: relative;
        display: block;
    }

    .footer_hr {
        position: relative; 
        display: block;
        top: 0rem;
        bottom: 25.5rem;
    }

    .buttons_top {
       display: flex;
      gap: 2rem;
      padding: 3rem 5%;
      justify-content: space-between;
      background: linear-gradient(to bottom right, #0e1b2a, #1a2c46);
      border-radius: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      flex-wrap: wrap;
      
    }
   
    .footer_div, .footer_bottom_right {
        width: 100%;
    }

    .bottom_right_texts {
        border-left-style: none;
    }

    .footer_bottom_left {
        display: none;
    }

    .large_screen_img {
        display: none;
    }

    .small_screen_img {
        display: block;
    }

    .text_slideshow {
        height: 100%;
        max-height: 15rem;
        backdrop-filter: blur(0.5);
        mask: none;
    }


    .footer_left, .footer_center, .footer_right {
        position:relative;
        width: 100%;
        left: 0;
        display: inline-block;
        height: max-content;
        margin-left: 0;
    }

    #footer {
        height: 50rem;

    }

  


    .nav_bar a, .menu_button {
        display: block;
        width: 100%;
        text-align: center;
    }

    .sidebar-section {
        width: 100%;
        padding: 0.5rem;
        text-align: center;
    }

    .sidebar-item {
    max-width: 100%;
    }
}


.main_img   {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.evidence_container {
  display: flex;
  justify-content: center;
  background-color: transparent;
  margin: 2rem 0;
  padding: 1rem;
}

.evidence {
  background: rgba(30, 30, 60, 0.9); /* deeper purple-blue with opacity */
  padding: 2rem;
  max-width: 900px;
  border-radius: 1rem;
  overflow-x: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  width: 100%;
}

.evidence h4,
.evidence h5 {
  color: #ffffff;
  margin-top: 0.5rem;
}

.evidence > ul > li > ul > li {
  color: #ffd700;
  text-shadow: 0 0 2px #4b390a;
  margin-top: 1rem;
  line-height: 1.6;
}

.evidence > ul > li > ul > li > figure > img {
  width: 100%;
  max-width: 100%;
  border-radius: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.evidence > ul > li > ul > li > figure {
  background-color: transparent;
  margin: 1rem 0;
  text-align: center;
}

.evidence figcaption {
  font-size: 0.85rem;
  color: #bbbbbb;
  margin-top: 0.3rem;
}

.center.biblical-section {
      max-width: 70%;
      margin: auto;
      margin-top: 1rem;
      background: linear-gradient(to bottom, #181f2b, #1d2e3c);
      padding: 2.5rem;
      border-radius: 1.5rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    }

    .center.biblical-section h2,
    .center.biblical-section h3 {
      color: #ffffff;
      margin-top: 2rem;
      font-size: 1.7rem;
      padding-left: 0.75rem;
      border-left: 3px solid #66ccff;
    }

    .center.biblical-section p {
      font-size: 1.05rem;
      color: #dddddd;
      margin-top: 1rem;
    }

    .biblical-img {
      border-radius: 0.75rem;
      margin-top: 2rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .large_screen_img.biblical-img {
      float: right;
      margin-left: 1.5rem;
      height: 20rem;
    }

    .small_screen_img.biblical-img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .large_screen_img.biblical-img {
        display: none;
      }

      .small_screen_img.biblical-img {
        display: block;
      }
    }

figcaption {
    font-size: 0.8rem;
    background-color: transparent;
}

figure {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: transparent;
}

figure > img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.fa-sort-up {
    display: inline;
}

.fa-sort-down {
    display: none;
}

/* Initial state - elements are hidden */
.hidden {
    opacity: 0;
    transform: translateY(20px); /* Slightly shifted down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


/* Final state - elements are visible */
.visible {
    opacity: 1;
    transform: translateY(0); /* Original position */
}

article p:first-child::first-letter{
    font-size: 70px;
}

article p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
.placard_container {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.placard {
  background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      backdrop-filter: blur(12px);
      border-radius: 1rem;
      padding: 2rem 2.5rem;
      box-shadow: 0 6px 18px rgba(0, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-width: 500px;
      text-align: center;
    
    
}

.placard h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background-color: transparent;
}

.placard p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #e0e0e0;
    }

.placard button {
    background-color: white;
    color: #007BFF;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.placard button:hover {
    background-color: #0056b3;
    color: white;
}

/* Container for skeleton loader */
.skeleton {
    background-color: #121212; 
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    height: 100vh;
    width: 100vw;
    position: relative;
    
    flex-wrap: wrap; /* Ensure elements wrap within the container */
}

/* Flexbox for inline skeleton boxes */
.inline-skeleton-boxes {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Ensure spans take full width of container */
    margin-bottom: 5px; /* Adjust spacing between rows */
}

/* General skeleton box style */
.skeleton-box {
    width: 80%;
    height: 20px;
    margin: 5px 0;
    background-color: #333; /* Dark background for skeleton box */
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

/* Keyframes for shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Shimmer effect for skeleton boxes and images */
.skeleton-box::before,
.skeleton-image::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #333 0%, #444 50%, #333 100%); /* Lighter gradient for shimmer effect */
    background-size: 2000px 100%;
    animation: shimmer 1.5s infinite;
}

/* Skeleton image style */
.skeleton-image {
    width: 100px;
    height: 100px;
    margin: 10px 0;
    background-color: #333; 
    animation: shimmer 1.5s infinite;
}

/* Paragraph margin for skeleton text */
.skeleton p {
    margin-left: 2rem;
    margin-right: 2rem;
}

.hide {
    display: none;
}

.rounded-skeleton {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.rounded-skeleton::before {
    content: '';
    display: block;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, #333 0%, #444 50%, #333 100%);
    position: absolute;
    top: 0;
    left: -100%;
    animation: shimmer 1.5s infinite;
}


