.time-bar-container {
    position: sticky;
    top: 1rem;
    left: 0;
    width: 100%;
    margin: 0.5rem auto; 
    padding: 12px 16px 8px 16px;
    border-radius: 4px;
    box-sizing: border-box;
    background: hsl(0, 0%, 100%);
    background: #f5feff;
    box-shadow: 0 5px 10px rgba(92, 92, 92, 0.5);
  }
  
.time-bar {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-block;
    width: 95%;
    height: 10px;
    background: #1bbd28;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 4px;
    z-index: 1;
    margin: 0;
}

.time-bar-warning {
    background: #d64949;
}

.time-bar-background {
    background: #e6e6e6;
    position: absolute;
    z-index: 0;
    
}

.time-bar-text-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem 0 0 0;
}

.time-bar-text-container span {
    font-size: 1rem;
    color: #333;
}
