.transition-enter {
    opacity: 0;
    transform: translateX(100%);
}

.transition-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s, transform 0.5s;
}

.projectTitle {
    padding: 10px 20px;
    border-bottom: solid 1px #AAA;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1em;
}

.empty-message {
	display:none;	
}
.projectTitle,
.empty-message {
	text-align: center;	
}

.transition-leave {
    opacity: 1;
    transform: translateX(0);
}

.transition-leave-active {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s, transform 0.5s;
}

.list-view {
    display: none;
}

.progress {
    display: none;
    height: 20px;
}

.navbar-brand {
    text-align: center;
    flex-grow: 1;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#backButton {
    background-color: blue;
    color: white;
}
