body {
    background-color: #FFFFFF; /* Change page background to white */
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    gap: 20px;
}

.clocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px; /* Add margin between clocks */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Align items vertically */
}

.clock {
    width: 118px;
    height: 116px;
    background-color: #F5F5F5;
    color: #1D1D1D;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    cursor: move;
}

.city {
    font-size: 12px; /* Smaller font for clocks */
    opacity: 0.66;
    margin-bottom: 3px;
}

.time {
    font-size: 30px; /* Smaller font for clocks */
    font-weight: bold;
    display: flex;
    align-items: baseline;
}

.stopwatch {
    width: 400px;
    height: 250px;
    background-color: #1D1D1D;
    color: #F5F5F5;
    font-family: 'Roboto Mono', monospace; /* Use monospace font */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 10px;
    cursor: move;
}

.stopwatch .time {
    font-size: 48px;
    display: flex;
    align-items: baseline;
}

.stopwatch .time .hours {
    font-size: 16px; /* Hours part smaller */
    opacity: 0.33; /* 33% opacity */
}

.stopwatch .time .milliseconds {
    font-size: 16px; /* Milliseconds part smaller */
    opacity: 0.33; /* 33% opacity */
    margin-left: 2px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.button {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5; /* Button background */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #CCCCCC; /* Hover effect */
    transform: scale(1.1);
}

.button img {
    width: 25px;
    height: 25px;
}

.trash-bin {
    display: none; /* Ensure the trash bin is hidden by default */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5F5F5;
    width: 120px;
    height: 120px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.trash-bin img {
    width: 60px;
    height: 60px;
}
