.countdown-container {
   display: flex;
   justify-content: space-between;
   max-width: 400px;
   margin: 0 auto;
   padding: 20px;
   background: rgba(0, 20, 20, 0.1);
}

.draw-time {
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.next-draw {
    font-size: 24px;
    text-align: center;
    margin-bottom: 5px;
}

.time-section {
   flex: 1;
   text-align: center;
   border-right: 1px solid rgba(255, 255, 255, 0.1);
   padding: 0 20px;
}

.time-section:last-child {
   border-right: none;
}

.time-number {
    font-size: 48px;
    margin: 0;
}

.time-label {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}


/* Remove flexbox */
.time-section {
    display: block;
    text-align: left;
}