body {
    margin: 0;
    overflow-y: scroll;
    padding-top: 50px;
}

ul.topnav {
    position: fixed;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    top: 0;
    left: 0;
    width: 100%;
}

ul.topnav li {
    float: left;
}

ul.topnav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
    background-color: #111;
}

ul.topnav li a.active {
    background-color: #04AA6D;
}

ul.topnav li.right {
    float: right;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #111;
    color: white;
    text-align: center;
    font-size: 22px;
}

#time {
    position: absolute;
    font-size: 36px;
    left: 45%;
    margin: auto;
    background-color: #9fcdff;
}

#id_H {
    color: blue;
}

#id_M {
    color: green;
}

#id_S {
    color: #6610f2;
}

table {
    border: 1px solid green;
}

th {
    border: 1px solid grey;
}

.search-box {
    position: fixed;
    left: 40px;
    width: 630px;
    display: flex;
    margin-bottom: 20px;
    max-width: 700px;
}

.search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px 0 0 8px;
}

.search-box button {
    padding: 10px 15px;
    border: none;
    background: #2196F3;
    color: #fff;
    border-radius: 0 8px 8px 0;
}

.gsc-control-cse {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

.radio {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.radio.show {
    display: block;
    opacity: 1;
    float: right;
    width: 600px;
    margin: 25px;
}

.transfer {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.transfer.show {
    display: block;
    opacity: 1;
    position: relative;
    top: 20px;
    float: right;
    width: 400px;
    height: 200px;
    margin: 25px;
}

.card {
    width: 480px;
    margin: -40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 6px rgba(0, 0, 0, 0.1);
    font-family: "Assistant", Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card h2 {
    text-align: center;
}

.card label {
    font-size: 18px;
    text-align: center;
    color: #333;
    margin-bottom: -8px;
}

.card input {
    width: 90%;
    padding: 12px 20px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #d1d1d1;
    border-radius: 15px;
    outline: none;
    transition: 0.8s;
    background: #fff;
    color: #000;
    margin: 10px;
    font-weight: bold;
}

.card input.focus {
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
}

.card button {
    padding: 12px;
    font-size: 18px;
    width: 100%;
    border: none;
    border-radius: 20px;
    background: #4a90e2;
    color: #fff;
    cursor: pointer;
    transition: 0.8s;
    margin: 10px;
}

.card button[type="submit"] {
    text-align: center;
    justify-content: space-between;
}

.card button[type="submit"]:hover {
    background: #3577c1;
}

.card button[type="reset"] {

}

.card button[type="reset"] {
    background: #d5d5d5;
}