.topTimer {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 50vw;
    background-color: rgba(58, 42, 45, 0.8); /* Dark, rustic background */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 0 0 5px 5px ;
    font-family: 'Courier New', monospace;
    border-bottom: 2px solid #6b4f3e;
    border-right: 2px solid #6b4f3e;
    border-left: 2px solid #6b4f3e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure it stays on top */
    transition: opacity 0.1s;
}

.topTimer .time-label, .topTimer span {
    margin: 0 5px;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
}

/* Additional styling for visual distinction of time units */
.topTimer span {
    font-weight: bold;
    letter-spacing: 1px;
}
