/* Ice Floe Theme - Cool Blue & White Aesthetic */

/* Light Mode Variables - Ice Floe Palette */
:root {
	--primary: #4a90e2; /* Medium blue */
	--secondary: #6ba3d8; /* Light blue */
	--accent: #2e5c8a; /* Darker blue */
	--green: #5a9fb8; /* Blue-green */
	--ice-white: #f0f8ff; /* Ice white */
	--ice-blue: #b8d4e3; /* Light ice blue */
	--water-deep: #1e3a5f; /* Deep water blue */
	--water-medium: #2d5a87; /* Medium water blue */
	
	/* Light mode colors */
	--bg-primary: #ffffff;
	--bg-secondary: #e8f4f8; /* Very light blue-gray */
	--bg-tertiary: #d0e8f0; /* Light ice blue */
	--text-primary: #1e3a5f; /* Deep water blue for text */
	--text-secondary: #4a6b8a;
	--text-muted: #7a9bb0;
	--border-color: #b8d4e3; /* Ice blue border */
	--card-bg: #ffffff;
	--navbar-bg: linear-gradient(135deg, #2d5a87 0%, #1e3a5f 100%);
	--shadow: 0 0.25rem 0.5rem rgba(30, 58, 95, 0.1);
	--shadow-lg: 0 0.5rem 1.5rem rgba(30, 58, 95, 0.15);
	--shadow-ice: 0 0.375rem 0.75rem rgba(107, 163, 216, 0.2);
}

/* Dark Mode Variables */
[data-theme="dark"] {
	--bg-primary: #1a2a3a;
	--bg-secondary: #243447;
	--bg-tertiary: #2d4054;
	--text-primary: #e8f4f8;
	--text-secondary: #b8d4e3;
	--text-muted: #7a9bb0;
	--border-color: #3d5a73;
	--card-bg: #243447;
	--navbar-bg: linear-gradient(135deg, #1e3a5f 0%, #152a40 100%);
	--shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
	--shadow-ice: 0 0.375rem 0.75rem rgba(30, 58, 95, 0.3);
}

/* Ice Floe Button Shapes - Irregular, Organic Forms */
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-3px) rotate(0.5deg); }
}

/* Base Ice Floe Button Style */
.btn-ice {
	position: relative;
	border: none;
	color: var(--text-primary);
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	margin: 0.25rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-ice);
	background: linear-gradient(135deg, var(--ice-white) 0%, var(--ice-blue) 100%);
	clip-path: polygon(
		0% 15%, 
		5% 0%, 
		20% 3%, 
		35% 0%, 
		50% 5%, 
		65% 0%, 
		80% 3%, 
		95% 0%, 
		100% 15%, 
		98% 30%, 
		100% 50%, 
		98% 70%, 
		100% 85%, 
		95% 100%, 
		80% 97%, 
		65% 100%, 
		50% 95%, 
		35% 100%, 
		20% 97%, 
		5% 100%, 
		0% 85%, 
		2% 70%, 
		0% 50%, 
		2% 30%
	);
}

.btn-ice:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 0.5rem 1rem rgba(107, 163, 216, 0.3);
	animation: float 3s ease-in-out infinite;
}

.btn-ice:active {
	transform: translateY(0px) scale(0.98);
}

/* Primary Ice Button - Deeper Blue */
.btn-ice-primary {
	background: linear-gradient(135deg, #6ba3d8 0%, #4a90e2 50%, #2d5a87 100%);
	color: white;
	text-shadow: 0 1px 2px rgba(30, 58, 95, 0.3);
}

.btn-ice-primary:hover {
	background: linear-gradient(135deg, #7bb3e8 0%, #5aa0f2 50%, #3d6a97 100%);
	box-shadow: 0 0.5rem 1rem rgba(74, 144, 226, 0.4);
}

/* Secondary Ice Button - Light Blue */
.btn-ice-secondary {
	background: linear-gradient(135deg, var(--ice-white) 0%, var(--ice-blue) 50%, #a8c4d3 100%);
	color: var(--text-primary);
}

.btn-ice-secondary:hover {
	background: linear-gradient(135deg, #ffffff 0%, #c8e4f3 50%, #b8d4e3 100%);
}

/* Success Ice Button - Blue-Green */
.btn-ice-success {
	background: linear-gradient(135deg, #7ab8c8 0%, #5a9fb8 50%, #4a8fa8 100%);
	color: white;
	text-shadow: 0 1px 2px rgba(30, 58, 95, 0.3);
}

.btn-ice-success:hover {
	background: linear-gradient(135deg, #8ac8d8 0%, #6aafc8 50%, #5a9fb8 100%);
	box-shadow: 0 0.5rem 1rem rgba(90, 159, 184, 0.4);
}

/* Danger Ice Button - Cool Red-Blue */
.btn-ice-danger {
	background: linear-gradient(135deg, #e87a7a 0%, #d85a6a 50%, #c84a5a 100%);
	color: white;
	text-shadow: 0 1px 2px rgba(30, 58, 95, 0.3);
}

.btn-ice-danger:hover {
	background: linear-gradient(135deg, #f88a8a 0%, #e86a7a 50%, #d85a6a 100%);
	box-shadow: 0 0.5rem 1rem rgba(216, 90, 106, 0.4);
}

/* Info Ice Button - Sky Blue */
.btn-ice-info {
	background: linear-gradient(135deg, #8ac8e8 0%, #6ba3d8 50%, #4a90e2 100%);
	color: white;
	text-shadow: 0 1px 2px rgba(30, 58, 95, 0.3);
}

.btn-ice-info:hover {
	background: linear-gradient(135deg, #9ad8f8 0%, #7bb3e8 50%, #5aa0f2 100%);
	box-shadow: 0 0.5rem 1rem rgba(107, 163, 216, 0.4);
}

/* Warning Ice Button - Warm Blue */
.btn-ice-warning {
	background: linear-gradient(135deg, #f5c896 0%, #e5b876 50%, #d5a856 100%);
	color: var(--text-primary);
}

.btn-ice-warning:hover {
	background: linear-gradient(135deg, #ffd8a6 0%, #f5c896 50%, #e5b876 100%);
	box-shadow: 0 0.5rem 1rem rgba(229, 184, 118, 0.4);
}

/* Outline Ice Buttons */
.btn-ice-outline-primary {
	background: transparent;
	border: 2px solid #4a90e2;
	color: #4a90e2;
	clip-path: polygon(
		0% 15%, 
		5% 0%, 
		20% 3%, 
		35% 0%, 
		50% 5%, 
		65% 0%, 
		80% 3%, 
		95% 0%, 
		100% 15%, 
		98% 30%, 
		100% 50%, 
		98% 70%, 
		100% 85%, 
		95% 100%, 
		80% 97%, 
		65% 100%, 
		50% 95%, 
		35% 100%, 
		20% 97%, 
		5% 100%, 
		0% 85%, 
		2% 70%, 
		0% 50%, 
		2% 30%
	);
}

.btn-ice-outline-primary:hover {
	background: linear-gradient(135deg, rgba(107, 163, 216, 0.1) 0%, rgba(74, 144, 226, 0.2) 100%);
	border-color: #6ba3d8;
	color: #2d5a87;
}

.btn-ice-outline-secondary {
	background: transparent;
	border: 2px solid var(--ice-blue);
	color: var(--text-primary);
	clip-path: polygon(
		0% 15%, 
		5% 0%, 
		20% 3%, 
		35% 0%, 
		50% 5%, 
		65% 0%, 
		80% 3%, 
		95% 0%, 
		100% 15%, 
		98% 30%, 
		100% 50%, 
		98% 70%, 
		100% 85%, 
		95% 100%, 
		80% 97%, 
		65% 100%, 
		50% 95%, 
		35% 100%, 
		20% 97%, 
		5% 100%, 
		0% 85%, 
		2% 70%, 
		0% 50%, 
		2% 30%
	);
}

.btn-ice-outline-secondary:hover {
	background: linear-gradient(135deg, rgba(184, 212, 227, 0.2) 0%, rgba(200, 228, 243, 0.3) 100%);
	border-color: #c8e4f3;
}

/* Standard Bootstrap Buttons - Converted to Ice Style */
.btn-primary {
	background: linear-gradient(135deg, #6ba3d8 0%, #4a90e2 50%, #2d5a87 100%);
	border: none;
	color: white;
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-ice);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #7bb3e8 0%, #5aa0f2 50%, #3d6a97 100%);
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(74, 144, 226, 0.4);
	color: white;
}

.btn-secondary {
	background: linear-gradient(135deg, var(--ice-white) 0%, var(--ice-blue) 50%, #a8c4d3 100%);
	border: none;
	color: var(--text-primary);
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-ice);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-secondary:hover {
	background: linear-gradient(135deg, #ffffff 0%, #c8e4f3 50%, #b8d4e3 100%);
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(184, 212, 227, 0.3);
	color: var(--text-primary);
}

.btn-success {
	background: linear-gradient(135deg, #7ab8c8 0%, #5a9fb8 50%, #4a8fa8 100%);
	border: none;
	color: white;
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-ice);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-success:hover {
	background: linear-gradient(135deg, #8ac8d8 0%, #6aafc8 50%, #5a9fb8 100%);
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(90, 159, 184, 0.4);
	color: white;
}

.btn-danger {
	background: linear-gradient(135deg, #e87a7a 0%, #d85a6a 50%, #c84a5a 100%);
	border: none;
	color: white;
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-ice);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-danger:hover {
	background: linear-gradient(135deg, #f88a8a 0%, #e86a7a 50%, #d85a6a 100%);
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(216, 90, 106, 0.4);
	color: white;
}

.btn-info {
	background: linear-gradient(135deg, #8ac8e8 0%, #6ba3d8 50%, #4a90e2 100%);
	border: none;
	color: white;
	font-weight: 500;
	padding: 0.625rem 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-ice);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-info:hover {
	background: linear-gradient(135deg, #9ad8f8 0%, #7bb3e8 50%, #5aa0f2 100%);
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(107, 163, 216, 0.4);
	color: white;
}

.btn-outline-primary {
	border: 2px solid #4a90e2;
	color: #4a90e2;
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-outline-primary:hover {
	background: linear-gradient(135deg, rgba(107, 163, 216, 0.1) 0%, rgba(74, 144, 226, 0.2) 100%);
	border-color: #6ba3d8;
	color: #2d5a87;
	transform: translateY(-2px);
}

.btn-outline-secondary {
	border: 2px solid var(--ice-blue);
	color: var(--text-primary);
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-outline-secondary:hover {
	background: linear-gradient(135deg, rgba(184, 212, 227, 0.2) 0%, rgba(200, 228, 243, 0.3) 100%);
	border-color: #c8e4f3;
	transform: translateY(-2px);
}

.btn-outline-success {
	border: 2px solid #5a9fb8;
	color: #5a9fb8;
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-outline-success:hover {
	background: linear-gradient(135deg, rgba(122, 184, 200, 0.1) 0%, rgba(90, 159, 184, 0.2) 100%);
	border-color: #7ab8c8;
	color: #4a8fa8;
	transform: translateY(-2px);
}

.btn-outline-danger {
	border: 2px solid #d85a6a;
	color: #d85a6a;
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-outline-danger:hover {
	background: linear-gradient(135deg, rgba(232, 122, 122, 0.1) 0%, rgba(216, 90, 106, 0.2) 100%);
	border-color: #e87a7a;
	color: #c84a5a;
	transform: translateY(-2px);
}

.btn-outline-info {
	border: 2px solid #6ba3d8;
	color: #6ba3d8;
	background: transparent;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	clip-path: polygon(
		0% 12%, 
		4% 0%, 
		18% 2%, 
		32% 0%, 
		48% 3%, 
		62% 0%, 
		78% 2%, 
		92% 0%, 
		100% 12%, 
		97% 28%, 
		100% 48%, 
		97% 68%, 
		100% 88%, 
		92% 100%, 
		78% 98%, 
		62% 100%, 
		48% 97%, 
		32% 100%, 
		18% 98%, 
		4% 100%, 
		0% 88%, 
		3% 68%, 
		0% 48%, 
		3% 28%
	);
}

.btn-outline-info:hover {
	background: linear-gradient(135deg, rgba(138, 200, 232, 0.1) 0%, rgba(107, 163, 216, 0.2) 100%);
	border-color: #8ac8e8;
	color: #4a90e2;
	transform: translateY(-2px);
}

/* Small buttons */
.btn-sm {
	padding: 0.375rem 1rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 0.875rem 2rem;
	font-size: 1.125rem;
}

/* Base styles */
body {
	background: linear-gradient(180deg, var(--bg-secondary) 0%, #d0e8f0 100%);
	color: var(--text-primary);
	transition: background-color 0.3s ease, color 0.3s ease;
	min-height: 100vh;
}

.navbar {
	background: var(--navbar-bg) !important;
	transition: background-color 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.navbar .navbar-brand {
	letter-spacing: 0.3px;
	color: white !important;
}

/* Card styles - Ice Floe inspired */
.card {
	background-color: var(--card-bg);
	border: none;
	border-radius: 16px;
	color: var(--text-primary);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.card-header {
	background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--ice-blue) 100%);
	border-bottom: 2px solid var(--border-color);
	padding: 1rem 1.5rem;
}

/* Form styles */
.form-control {
	background-color: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	transition: all 0.3s ease;
	padding: 0.625rem 1rem;
}

.form-control:focus {
	background-color: var(--bg-primary);
	border-color: var(--primary);
	color: var(--text-primary);
	box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
	outline: none;
}

.form-select {
	background-color: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	transition: all 0.3s ease;
	padding: 0.625rem 1rem;
}

.form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
	outline: none;
}

/* Table styles */
table {
	color: var(--text-primary);
}

.table {
	--bs-table-bg: var(--card-bg);
	--bs-table-border-color: var(--border-color);
	border-radius: 12px;
	overflow: hidden;
}

.table-striped > tbody > tr:nth-of-type(odd) > td,
.table-striped > tbody > tr:nth-of-type(odd) > th {
	background-color: var(--bg-tertiary);
}

.table-hover > tbody > tr:hover {
	background-color: rgba(107, 163, 216, 0.1);
}

/* Alert styles */
.alert {
	border: none;
	border-radius: 12px;
	border-left: 4px solid;
	padding: 1rem 1.5rem;
}

.alert-info {
	background: linear-gradient(135deg, rgba(138, 200, 232, 0.15) 0%, rgba(107, 163, 216, 0.1) 100%);
	border-left-color: #6ba3d8;
	color: var(--text-primary);
}

.alert-warning {
	background: linear-gradient(135deg, rgba(245, 200, 150, 0.15) 0%, rgba(229, 184, 118, 0.1) 100%);
	border-left-color: #e5b876;
	color: var(--text-primary);
}

.alert-success {
	background: linear-gradient(135deg, rgba(122, 184, 200, 0.15) 0%, rgba(90, 159, 184, 0.1) 100%);
	border-left-color: #5a9fb8;
	color: var(--text-primary);
}

.alert-danger {
	background: linear-gradient(135deg, rgba(232, 122, 122, 0.15) 0%, rgba(216, 90, 106, 0.1) 100%);
	border-left-color: #d85a6a;
	color: var(--text-primary);
}

/* Text colors */
.text-muted {
	color: var(--text-muted) !important;
}

.text-secondary {
	color: var(--text-secondary) !important;
}

/* Border colors */
.border {
	border-color: var(--border-color) !important;
}

/* Dropdown styles */
.dropdown-menu {
	background-color: var(--card-bg);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 0.5rem;
}

.dropdown-item {
	color: var(--text-primary);
	border-radius: 8px;
	padding: 0.5rem 1rem;
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--ice-blue) 100%);
	color: var(--text-primary);
}

/* Modal styles */
.modal-content {
	background-color: var(--card-bg);
	border: none;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
}

.modal-header {
	border-bottom: 2px solid var(--border-color);
	background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--ice-blue) 100%);
	border-radius: 16px 16px 0 0;
}

.modal-footer {
	border-top: 2px solid var(--border-color);
}

/* Badge styles */
.badge {
	border-radius: 8px;
	padding: 0.375rem 0.75rem;
	font-weight: 500;
}

/* Dark mode toggle button */
.theme-toggle {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 1.2rem;
	padding: 0.5rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	clip-path: polygon(
		0% 15%, 
		5% 0%, 
		20% 3%, 
		35% 0%, 
		50% 5%, 
		65% 0%, 
		80% 3%, 
		95% 0%, 
		100% 15%, 
		98% 30%, 
		100% 50%, 
		98% 70%, 
		100% 85%, 
		95% 100%, 
		80% 97%, 
		65% 100%, 
		50% 95%, 
		35% 100%, 
		20% 97%, 
		5% 100%, 
		0% 85%, 
		2% 70%, 
		0% 50%, 
		2% 30%
	);
}

.theme-toggle:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	color: white;
	transform: translateY(-2px);
}

/* Table responsive styles */
table td, table th {
	vertical-align: middle;
}

/* Gradient backgrounds */
.gradient-bg-blue {
	background: linear-gradient(135deg, #4a90e2 0%, #2d5a87 100%);
}

.gradient-bg-purple {
	background: linear-gradient(135deg, #6ba3d8 0%, #4a90e2 100%);
}

.gradient-bg-green {
	background: linear-gradient(135deg, #7ab8c8 0%, #5a9fb8 100%);
}

.gradient-bg-orange {
	background: linear-gradient(135deg, #e5b876 0%, #d5a856 100%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, var(--ice-blue) 0%, #a8c4d3 100%);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #c8e4f3 0%, var(--ice-blue) 100%);
}

[data-theme="dark"] ::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #3d5a73 0%, #4a6b8a 100%);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #4a6b8a 0%, #5a7b9a 100%);
}

/* Input group styles */
.input-group .form-control {
	border-radius: 12px 0 0 12px;
}

.input-group .btn {
	border-radius: 0 12px 12px 0;
}

/* Button group styles */
.btn-group .btn {
	margin: 0;
}

.btn-group .btn:not(:first-child) {
	margin-left: -1px;
}

/* Disabled button styles */
.btn:disabled,
.btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}
