
*{box-sizing:border-box}

body{
margin:0;
font-family:Arial;
background:#002ff2;
color:white;
}

header{
display:flex;
align-items:center;
gap:20px;
padding:10px;
background:#001bb0;
}

.logo{width:70px}

.title{
font-size:24px;
font-weight:bold;
}

.subbar{
text-align:center;
padding:10px;
}

.futurelink{
display:block;
color:#cfd8ff;
font-weight:bold;
font-size:18px;
text-decoration:none;
margin-bottom:8px;
}

.newbtn{
display:inline-block;
background:#001bb0;
padding:4px 8px;
font-size:13px;
border-radius:4px;
text-decoration:none;
color:white;
}

.tablewrap{padding:20px}

table{
width:100%;
border-collapse:collapse;
}

th,td{
border:1px solid #aab6ff;
padding:8px;
}

tbody tr{
background:#1a44ff;
}

input{
width:100%;
padding:6px;
font-size:15px;
background:#ffffff;
color:#0033cc;
font-weight:bold;
border:none;
}

input:disabled{
background:#ffffff;
color:#0033cc;
font-weight:bold;
}

button{
cursor:pointer;
background:none;
border:none;
font-size:18px;
color:white;
}

@media (max-width:700px){

thead{display:none}

tr{
display:block;
margin-bottom:15px;
background:#1a44ff;
padding:5px
}

td{
display:flex;
justify-content:space-between;
align-items:center;
border:none;
border-bottom:1px solid #aab6ff;
padding:8px;
font-size:17px;
}

td::before{
content:attr(data-label);
font-weight:bold;
min-width:45%;
}

td input{
width:50%;
font-size:17px;
}

}
