.student-slot {
	width: 100%;
	background-color: white;
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	padding: 10px;
	box-sizing: border-box;
	align-items: center;
	gap: 10px;
}

.student-slot-name {
    font-family: hand;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 20%; 
    min-width: 50px;
    max-width: 200px;
}

.student-slot-words-practiced {
    font-family: hand;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-grow: 1;
    min-width: 50px;
}

.student-slot-level {
	font-family: hand;
    font-size: 18px;
    width: 40px;
    min-width: 40px;
    background-color: rgb(253, 94, 83);
    color: whitesmoke;
    padding: 10px 0px 9px 0px;
    border-width: 0px;
    border-radius: 10px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2), 0 1px 0 rgba(255, 255, 255, .5);
    text-align: center;
    box-sizing: border-box;
}

.student-slot-progress-container {
	background-color: #ddd;
	height: 20px;
	border-width: 0px;
	border-radius: 20px;
	overflow: hidden;
	width: 200px;
}

.student-slot-progress-bar {
	background-color: #72cc50;
	height: 100%;
	border-radius: 20px;
}

.student-slot-remove {
	font-family: hand;
	font-size: 16px;
	border-radius: 5px;
	padding: 8px;
	cursor: pointer;
	background-color: lightcoral;
}