/* Class Assignments Styles */

.class-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.btn-edit {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.2s;
}

.btn-edit:hover {
	background-color: #0056b3;
}

.form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.form-header h2 {
	margin: 0;
}

.delete-form {
	display: inline;
}

.btn-delete {
	background-color: #dc3545;
	color: white;
	border: none;
	padding: 6px 10px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: background-color 0.2s;
}

.btn-delete:hover {
	background-color: #c82333;
}

.class-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
}

.class-info {
	flex-grow: 1;
}

.class-info h3 {
	margin: 0 0 8px 0;
	color: #333;
}

.class-details {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.subject-tag, .grades-tag, .enrollment-tag {
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
}

.subject-tag {
	color: white;
}

.grades-tag {
	background-color: #f8f9fa;
	color: #495057;
	border: 1px solid #dee2e6;
}

.enrollment-tag {
	background-color: #e3f2fd;
	color: #1976d2;
	border: 1px solid #bbdefb;
}

.class-description {
	margin: 8px 0 0 0;
	color: #666;
	font-size: 14px;
}