/* Default light theme */
:root {
    --banner-background-color: #fca311;
    --section-shadow-color: #dbdbdb;
    --description_text-color: gray;
    --banner-text-color: #ffffff;
}
/* Dark theme */
[data-theme="dark"] {
    --banner-background-color: #abd1c6;
    --section-shadow-color: #000000;
    --description_text-color:#abd1c6;
    --banner-text-color: #41424C;
}
.content_container {
    position: fixed;
    top:109px;
    bottom: 84px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 59px - 50px - 50px - 34px);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    /* margin-top: 109px; */
    overflow-y: auto;
}
.this_day_section,.banner_button {
    height: 100px;
    flex-shrink: 0;
    border: 1px solid var(--line-border-color); /* from design_base.css */
    border-radius: 10px;
    margin: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--banner-background-color);
    box-shadow: var(--section-shadow-color) 0px 3px 15px -3px; 
    color: var(--banner-text-color); /* HERE 2 CHANGE!!! */
    font-size: 20px;    
}
.section_button{
    height: 200px;
    border: 1px solid var(--line-border-color);
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: var(--description_text-color);
    display: flex;    
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--section-shadow-color) 0px 3px 15px -3px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.section_title {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* padding-left: 10px;
    padding-right: 10px; */
}
.section_icon{
    width: 100px;
    height: 100px;
    
    background-size: cover;
}
.icon_launch{
    background-image: url('/static/images/rocket-2(10px).png');
    filter: drop-shadow(1px 1px 2px rgb(8, 8, 8));
}
.icon_3d{
    background-image: url('/static/images/3d-cube(10px).png');
    filter: drop-shadow(1px 1px 2px rgb(8, 8, 8));
}
.icon_about{
   background-image: url('/static/images/information(10px).png');
   filter: drop-shadow(1px 1px 2px rgb(8, 8, 8)); 
}
[data-theme="dark"] .icon_launch { /* flip colors for dark mode */
    filter: invert(100%)
    drop-shadow(1px 1px 2px rgb(246, 246, 246)); 
}
[data-theme="dark"] .icon_3d { /* flip colors for dark mode */
    filter: invert(100%)
    drop-shadow(1px 1px 2px rgb(246, 246, 246)); 
}
[data-theme="dark"] .icon_about { /* flip colors for dark mode */
    filter: invert(100%)
    drop-shadow(1px 1px 2px rgb(246, 246, 246)); 
}
.section_description {
    margin-left: 10px;
}
.section_description_line {
    display: flex;
    flex-direction: row;
}
.digit-container {
  position: relative;
  height: 1em;          /* match font size */
  overflow: hidden;
  display: inline-block;
}

.digit-strip {
  position: absolute;
  top: 2px;
  left: 0;
  transition: transform 1s ease-in-out; /* smooth slide */
}
.digit-strip span {
  display: block;
  height: 1em;          /* match font size */
  line-height: 1em;
}
.launch_number_before_text{
    line-height: normal;
}
/* THIS DAY */
.this_day_background{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--appearing-section-box-back);
    backdrop-filter: blur(2px); /* Blur intensity */
    z-index: 20;
}
.this_day_block{
    position: fixed;
    height: 0;
    width: 100%;
    z-index: 100;
    transition: 1s;
    bottom: 0;
    left: 0;
    background-color: var(--background-color);
    font-size: 16px;
    box-shadow: var(--appearing-section-box-shadow) ;
}

.this_day_title_wrapper, .this_day_wrapper{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.this_day_title_wrapper{
    height: 50px;
  
}
.this_day_title{
    margin-left: auto;
    margin-right: auto;
}
.this_day_wrapper{
    position: relative;
    flex-direction: column;
    overflow-y:scroll;
    height: 85%;
    text-align: justify;
    margin-bottom: 10px;
}
.this_day_intro{
    margin-top: 5px;
    margin-bottom: 5px;
}
.this_day_image{
    width: 100%;
}
.this_day_description{
    margin: 10px 0px;
    text-align: center;
}