/**
 * Torch Add Due Date Styles
 */

/* Student Dashboard Reminders */
.tadd-due-date-content {
	font-size: 1em;
	line-height: 1.5;
}

.tadd-on-time {
	color: #46b450;
	font-weight: 600;
}

.tadd-due-soon {
	color: #f0b849;
	font-weight: 600;
}

.tadd-overdue {
	color: #dc3232;
	font-weight: 600;
}

/* Reporting Table Status */
.tadd-status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 0.9em;
	font-weight: 500;
}

.tadd-status-on-time {
	background-color: #d4edda;
	color: #155724;
}

.tadd-status-due-soon {
	background-color: #fff3cd;
	color: #856404;
}

.tadd-status-overdue {
	background-color: #f8d7da;
	color: #721c24;
}

