	:root {
		--bs-primary: #007aff;
		--bs-secondary: #8e8e93;
		--bs-success: #34c759;
		--bs-danger: #ff3b30;
		--bs-warning: #ff9500;
		--bs-info: #5ac8fa;
		--bs-light: #f2f2f7;
		--bs-dark: #1c1c1e;
		--bs-gray-50: #fafafa;
		--bs-gray-100: #f5f5f7;
		--bs-gray-200: #e5e5ea;
		--bs-gray-300: #d1d1d6;
		--bs-gray-800: #1d1d1f;
		--bs-gray-900: #000000;
		--apple-blue: #007aff;
		--apple-gray: #8e8e93;
		--apple-light-gray: #f2f2f7;
	}

	.btn-primary {
		background-color: var(--apple-blue);
		border-color: var(--apple-blue);
		border-radius: 1rem;
		padding: 0.75rem 1.5rem;
		font-weight: 500;
		transition: all 0.2s ease;
	}

	.btn-primary:hover {
		background-color: #0056b3;
		border-color: #0056b3;
		box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
	}



	a {
		text-decoration: none;
		color: var(--apple-blue);
		transition: color 0.2s ease;
	}

	a:hover {
		color: #0056b3;
		text-decoration: none;
	}

	.active>.page-link,
	.active>.nav-link {
		background-color: var(--bs-primary) !important;
		/* Use !important to ensure override */
		border-color: var(--bs-primary) !important;
		/* Use !important to ensure override */
	}


	.page-link {

		color: var(--bs-primary);

	}


	.sbo-orange {
		color: rgb(235, 89, 18)
	}


	.bg-gradient-subtle {
		background: linear-gradient(to bottom, #000000, #434343);
		/* Gradient from top (black) to bottom (dark grey) */
	}





	.btn-orange {
		background-color: rgb(235, 89, 18);
		/* Orange background */
		border-color: rgb(235, 89, 18);
		/* Slightly darker orange for the border */
		color: white;
		/* White text color for better readability */
	}

	.btn-orange:hover,
	.btn-orange:focus,
	.btn-orange:active {
		background-color: #e65c00;
		/* Slightly darker orange on hover/focus/active */
		border-color: #b34700;
		/* Adjust border color for hover/focus/active */
	}

	.cursor-pointer {
		cursor: pointer;
	}

	.equal-height-img {
		height: 200px;
		/* Adjust this value as needed */
		object-fit: cover;
		/* Keeps the aspect ratio of the image */
	}

	.content {
		max-width: 1000px;
		/* or any other width you prefer */
		margin-right: auto;
		margin-left: auto;
	}
	
	.rounded {
	  border-radius: 0.4rem !important;
	}
	
body {
	  /*  background-color: var(--apple-light-gray); */
	  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
	  font-size: 1.0rem !important;
	  line-height: 1.6;
	  color: var(--bs-gray-800);
	}

	/* Apple-style card styling */
	.card {
		border: none;
		border-radius: 12px;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		background-color: white;
	}

	.card:hover {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	}

	/* Apple-style buttons */
	.btn {
		border-radius: 0.75rem;
		font-weight: 500;
		transition: all 0.2s ease;
		border: none;
		padding: 0.6rem 1.2rem;
	}

	.btn-outline-dark {
		border: 1px solid var(--bs-gray-300);
		color: var(--bs-gray-800);
		background-color: white;
	}

	.btn-outline-dark:hover {
		background-color: var(--bs-gray-800);
		border-color: var(--bs-gray-800);
		color: white;
	}

	.btn-dark {
		background-color: var(--bs-gray-800);
		border-color: var(--bs-gray-800);
	}

	.btn-dark:hover {
		background-color: var(--bs-gray-900);
		border-color: var(--bs-gray-900);
	}

	/* Apple-style rounded pills */
	.rounded-pill {
		border-radius: 999px !important;
	}

	/* Typography improvements */
	h1, h2, h3, h4, h5, h6 {
		font-weight: 600;
		color: var(--bs-gray-800);
		line-height: 1.3;
	}

	.display-1, .display-2, .display-3, .display-4 {
		font-weight: 300;
		letter-spacing: -0.02em;
	}

	.fw-light {
		font-weight: 300 !important;
	}

	.fw-semibold {
		font-weight: 600 !important;
	}

	/* Apple-style badges */
	.badge {
		border-radius: 999px;
		font-weight: 500;
		padding: 0.4rem 0.8rem;
	}

	.badge.rounded,
	.badge.rounded-0,
	.badge.rounded-1,
	.badge.rounded-2,
	.badge.rounded-3,
	.badge.rounded-4,
	.badge.rounded-5 {
		border-radius: 999px !important;
	}

	/* Cart badge - Apple-inspired numerical indicator */
	.cart-badge {
		background-color: var(--bs-danger) !important;
		color: white;
		font-size: 0.7rem;
		font-weight: 600;
		min-width: 1.2rem;
		height: 1.2rem;
		border-radius: 0.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid white;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	}

	/* Smooth transitions */
	.nav-link {
		transition: all 0.2s ease;
	}

	/* Apple-style shadows */
	.shadow-sm {
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
	}

	.shadow {
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	}

	/* Content containers */
	.bg-white {
		background-color: white !important;
	}

	/* Apple-style spacing */

/* Player Styles - Consolidated from player.css */
.waveform {
	width: 100%;
}

.player-controls {
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--apple-blue);
	border: none;
	color: white;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.player-controls:hover {
	background-color: #0056b3;
	box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.beat-row:hover {
	background-color: var(--apple-light-gray);
	border-radius: 12px;
	transition: all 0.2s ease;
}

.beat-row.playing,
.beat-row.now-playing {
	background-color: var(--bs-gray-100);
	border-radius: 12px;
	border-left: none;
}

#stickyPlayer {
	z-index: 1020;
	height: 130px;
	background-color: white;
	border-top: 1px solid var(--bs-gray-200);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styles - Apple-inspired */
.form-control {
	border-radius: 12px;
	border: 1px solid var(--bs-gray-300);
	padding: 0.875rem 1rem;
	font-size: 1rem;
	transition: all 0.2s ease;
	background-color: white;
}

.form-control:focus {
	border-color: var(--apple-blue);
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
	background-color: white;
}

.form-select {
	border-radius: 12px;
	border: 1px solid var(--bs-gray-300);
	padding: 0.875rem 1rem;
	transition: all 0.2s ease;
}

.form-select:focus {
	border-color: var(--apple-blue);
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Alert Styles - Apple-inspired */
.alert {
	border-radius: 12px;
	border: none;
	padding: 1rem 1.25rem;
	font-weight: 500;
}

.alert-success {
	background-color: rgba(52, 199, 89, 0.1);
	color: #1b7c3d;
	border-left: 4px solid var(--bs-success);
}

.alert-danger {
	background-color: rgba(255, 59, 48, 0.1);
	color: #c41e3a;
	border-left: 4px solid var(--bs-danger);
}

.alert-warning {
	background-color: rgba(255, 149, 0, 0.1);
	color: #b25100;
	border-left: 4px solid var(--bs-warning);
}

/* Accordion Styles - Apple-inspired */
.accordion {
	border-radius: 12px;
	overflow: hidden;
}

.accordion-item {
	border: none;
	border-bottom: 1px solid var(--bs-gray-200);
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-button {
	border: none;
	background-color: white;
	padding: 1.25rem 1.5rem;
	font-weight: 500;
	border-radius: 0;
	transition: all 0.2s ease;
}

.accordion-button:not(.collapsed) {
	background-color: var(--apple-light-gray);
	color: var(--apple-blue);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
	border-color: var(--apple-blue);
}

.accordion-body {
	padding: 1.25rem 1.5rem;
	background-color: var(--bs-gray-50);
	border-top: 1px solid var(--bs-gray-200);
}

/* Table Styles - Apple-inspired */
.table {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.table th {
	background-color: var(--apple-light-gray);
	font-weight: 600;
	border-bottom: 2px solid var(--bs-gray-200);
	padding: 1rem;
}

.table td {
	padding: 1rem;
	vertical-align: middle;
	border-bottom: 1px solid var(--bs-gray-200);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
	background-color: var(--bs-gray-50);
}

/* Input Group Styles */
.input-group {
	border-radius: 12px;
	overflow: hidden;
}

.input-group .form-control {
	border-radius: 0;
}

.input-group .form-control:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.input-group .btn {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

/* Pagination Styles */
.pagination {
	border-radius: 12px;
	overflow: hidden;
}

.page-link {
	border: 1px solid var(--bs-gray-300);
	color: var(--apple-blue);
	padding: 0.75rem 1rem;
	transition: all 0.2s ease;
}

.page-link:hover {
	background-color: var(--apple-light-gray);
	border-color: var(--apple-blue);
	color: var(--apple-blue);
}

.page-item.active .page-link {
	background-color: var(--apple-blue);
	border-color: var(--apple-blue);
}

/* Modal Styles */
.modal-content {
	border: none;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
	border-bottom: 1px solid var(--bs-gray-200);
	padding: 1.5rem;
}

.modal-body {
	padding: 1.5rem;
}

.modal-footer {
	border-top: 1px solid var(--bs-gray-200);
	padding: 1.5rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
	.card {
		border-radius: 12px;
		margin-bottom: 1rem;
	}
	
	.btn {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
	
	.form-control, .form-select {
		padding: 1rem;
		font-size: 1rem;
	}
}
