
/* general styles */
body {
    font-family: sans-serif;
}

.container {
    width: 600px;
    margin: 50px auto;
}

form {
    margin-bottom: 3px;
}
/* textarea to show files as json */
textarea#uploaded {
    width: 100%;
    min-height: 300px;
    font-size: 10px;
}


/* show upload progress with bars */

.progress-bar-area {
    margin-top: 0px;
	font-family: 'Inter', sans-serif;
}

.bar.red { background: tomato; }

.progress-bar-area .progress {
    height: 22px;
    border-radius: 5px;
	font-size: 1.3rem;
    position: relative;
    width: 100%;
    background: #C7DA9F;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    border-radius: 5px;
    display: block;
}

.bar {
	background: #8ad432;
    padding: 3px;
    font-size: 12px;
    height: 22px;
	color: black;
	position: absolute;
    top: 0;
    left: 0;
	text-align: center;
    font-weight: bold;
    line-height: 1.3;
}
