/**
 * NOTES SYSTEM - ULTIMATE DESIGN
 * Beautiful notes interface
 *
 * @package Coursee
 * @since 1.0.0
 */

.coursee-notes-page {
	max-width: 900px !important;
	margin: 0 auto !important;
	padding: 3rem 2rem !important;
}

.notes-header {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-bottom: 2rem !important;
	padding-bottom: 1.5rem !important;
	border-bottom: 2px solid #e5e7eb !important;
}

.notes-header h1 {
	font-size: 2rem !important;
	font-weight: 900 !important;
	color: #1a1a1a !important;
	margin: 0 !important;
}

.notes-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 1.5rem !important;
}

.note-item {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(20px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(180%) !important;
	border-radius: 12px !important;
	padding: 1.5rem !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
	border: 1px solid rgba(229, 231, 235, 0.5) !important;
	transition: all 0.3s ease !important;
}

.note-item:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.note-header {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-bottom: 1rem !important;
}

.note-course-title {
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	color: #5624d0 !important;
	margin: 0 !important;
}

.note-actions {
	display: flex !important;
	gap: 0.5rem !important;
}

.note-edit-btn,
.note-delete-btn {
	background: transparent !important;
	border: 1px solid #d1d5db !important;
	border-radius: 6px !important;
	padding: 0.375rem 0.625rem !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	font-size: 1rem !important;
}

.note-edit-btn:hover {
	background: rgba(86, 36, 208, 0.1) !important;
	border-color: #5624d0 !important;
}

.note-delete-btn:hover {
	background: rgba(239, 68, 68, 0.1) !important;
	border-color: #ef4444 !important;
}

.note-content {
	font-size: 0.9375rem !important;
	line-height: 1.7 !important;
	color: #3e4143 !important;
	margin-bottom: 1rem !important;
}

.note-date {
	font-size: 0.8125rem !important;
	color: #9ca3af !important;
}

.notes-empty {
	text-align: center !important;
	padding: 4rem 2rem !important;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 12px !important;
	border: 2px dashed #e5e7eb !important;
}

.notes-empty p {
	font-size: 1rem !important;
	color: #6b7280 !important;
	margin: 0 !important;
}

