body{
    background-color: black;
    overflow: hidden;
}

*{
    margin: 0;
    padding: 0;
}
.grey-border{
    display: flex;
    gap: 60px;
    height: 100vh;
    justify-content:center;
    align-items: center;
    color: #ffe4c6;
    border: 1px solid #ffffff40;
    background: #1b1b1b;
    box-shadow: 0 80px 32px 0 rgba(31, 31, 135, 0.37);
    backdrop-filter: blur(4px);
    border-radius: 7px;
    margin: 7px;
    
}

.Time{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 7vh;
    gap: 1vh;
}

.main-content{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
     height: 200px;  
    gap: 15px;
}

.button1{
    display: flex;
    width: 100px;
    height: 50px;
    text-align:center;
    font-size: 20px;
    background-color:transparent;
    color: rgb(133, 143, 166);
    border-radius: 20px;
    padding: 12px 27px;
    margin: 0;
    border: 1px solid #3f94c2;
    cursor: pointer;
    
}

.button{
    visibility: hidden;
    width: 100px;
    height: 50px;
    text-align:center;
    font-size: 20px;
    background-color:transparent;
    color: rgb(133, 143, 166);
    border-radius: 20px;
    margin: 0;
    border: 1px solid #3f94c2;
    cursor: pointer;
    
}

.lap-table {
    width: 400px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #1b1b1b;
    overflow: hidden;
    position: fixed;
    right: 0vh;
    height: 28vh;
    overflow-y: scroll;
    visibility: hidden;
}

.lap-header, .lap-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 16px;
    text-align: center;
}

.lap-header {
    font-weight: bold;
    border-bottom: 1px solid #333;
}

.lap-row {
    border-bottom: 1px solid #2c2c2c;
}

.lap-row:last-child {
    border-bottom: none;
}

.lap-row span {
    font-size: 14px;
    color: #cfcfcf;
}


@media(max-width: 1000px){
    .lap-table{
        position: static; 
        width: 350px;   
    }
    .grey-border{
        flex-direction: column;
        gap: 20vh;
    }
}