@charset "utf-8";

#header{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1px solid lightgray;
}
#header-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}
#title{
    width: 45%;
}
#title img{
    width: 100%;
    height: auto;
}
#header-link{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1rem;
}
#header-link a{
    width: 40%;
}
#header-link a img{
    width: 100%;
    height: auto;
    -moz-appearance: none;
    appearance: none;
}
h3{
    margin: 0;
    background-color: cadetblue;
    color: white;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #4b7e80;
}
h3.dc{
    cursor: pointer;    
}
h3.dc:after{
    font-family: 'Material Icons';
    content: "menu";
}
h3.active::after{
    font-family: 'Material Icons';
    content: "close";
}
ul{
    list-style-type: none;
    padding: 0;
    margin: 0 0 1rem;
}
.world_data{
    display: flex;
    justify-content: space-between;
    line-height: 1.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid lightgray;
}
.today{
    background-color: lightpink;
}
.no_report{
    pointer-events: none;
    text-decoration: none;
    color: gray;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1rem;
}

dt {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 1px solid lightgray;
    font-weight: bold;
}

dd {
    margin: 0;
    padding: 0.5rem 1rem 1rem;
}

dd div {
    line-height: 2rem;
}

form{
    text-align: center;
    padding-bottom: 1rem;
}
button{
    background-color: #00acee;
    padding: 0.7rem;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
}