/* 스톱워치 스타일 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.stopwatch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.stopwatch {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.time {
    font-size: 36px;
    margin-bottom: 10px;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.lap {
    margin-top: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
}

.lap-times {
    list-style: none;
    padding: 0;
    max-height: 200px; /* 최대 랩 타임 목록 높이 지정 */
    overflow-y: hidden; /* 스크롤바 숨기기 */
}

li {
    font-size: 18px;
    margin-bottom: 5px;
}
