* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	line-height: 1.6;	color: #222;
	background: linear-gradient(264deg, rgba(174, 221, 226, 1) 0%, rgba(227, 238, 240, 1) 60%, rgba(149, 199, 205, 1) 100%);
	min-height: 100vh;
	transition: background 1s ease-in-out;
}
body.login-page {
	background: linear-gradient(rgba(174, 221, 226, 0.7), rgba(227, 238, 240, 0.7), rgba(149, 199, 205, 0.7)), url('https://www.investfife.co.uk/wp-content/uploads/2024/10/Kirkcaldy-prom-resized-scaled.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	transition: none;
	overflow: hidden;
	height: 100vh;
}

/* Logo Upload Styles */
.logo-upload {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-upload input[type="file"] {
	display: none;
}

.logo-preview {
	width: 80px;
	height: 80px;
	border: 2px dashed #ddd;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}

.logo-preview:hover {
	border-color: #007bff;
	background: rgba(0, 123, 255, 0.05);
}

.logo-placeholder {
	font-size: 12px;
	color: #666;
	text-align: center;
}

.logo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hero Upload Styles */
.hero-upload {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hero-upload input[type="file"] {
	display: none;
}

.hero-preview {
	width: 120px;
	height: 60px;
	border: 2px dashed #ddd;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}

.hero-preview:hover {
	border-color: #007bff;
	background-color: #f8f9fa;
}

.hero-placeholder {
	color: #6c757d;
	font-size: 0.85rem;
	text-align: center;
}

.hero-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/* Users List Styles */
.users-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.user-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(45deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	overflow: hidden;
}

.user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.user-name {
	font-weight: 600;
	color: #333;
	margin-bottom: 2px;
}

.user-joined {
	font-size: 0.85rem;
	color: #666;
}

.follow-user-btn {
	padding: 0.4rem 0.8rem;
	background: linear-gradient(135deg, #aceef9 0%, #aec3c9 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #333;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	white-space: nowrap;
	width:auto;
}

.follow-user-btn:hover {
	background: linear-gradient(135deg, #9de8f7 0%, #9bb8c0 100%);
	transform: translateY(-1px);
}

.follow-user-btn.following {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border-color: rgba(40, 167, 69, 0.3);
	width:auto;
}

.follow-user-btn.following:hover {
	background: linear-gradient(135deg, #c3e6cb 0%, #b8dcc0 100%);
}



/* Business Logo Placeholder */
.business-logo-placeholder {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(45deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 48px;
	text-transform: uppercase;
}

.hero-business-logo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Admin Panel Dropdown Styles */
.admin-panel-dropdown {
	margin-top: 1rem;
	border-top: 1px solid #e4e6ea;
	padding-top: 1rem;
}

.admin-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	background: #f8f9fa;
	border: 1px solid #e4e6ea;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.9rem;
	color: #65676b;
}

.admin-toggle:hover {
	background: #e4e6ea;
	border-color: #d8dadf;
}

.admin-toggle .material-symbols-outlined {
	font-size: 16px;
}

.admin-arrow {
	margin-left: auto;
	transition: transform 0.2s ease;
}

.admin-toggle.expanded .admin-arrow {
	transform: rotate(180deg);
}

.admin-dropdown-content {
	margin-top: 0.5rem;
	padding: 1rem;
	background: #ffd1d1;
	border: 1px solid #ffc107;
	border-radius: 6px;
	animation: slideDown 0.2s ease;
}

.admin-message-line {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.admin-message-line input {
	flex: 1;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9rem;
}

.admin-message-line select {
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9rem;
	background: white;
	width:30%;
}

.admin-send-btn {
	padding: 0.5rem 1rem;
	background: #dc3545;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.admin-send-btn:hover {
	background: #c82333;
}

.admin-remove-section {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e4e6ea;
}

.admin-remove-section h4 {
	margin: 0 0 0.75rem 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #dc3545;
}

.admin-remove-line {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.admin-remove-line select {
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9rem;
	background: white;
}

.admin-remove-btn {
	padding: 0.5rem 1rem;
	background: #dc3545;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.admin-remove-btn:hover {
	background: #c82333;
}

.admin-users-section {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e4e6ea;
}

.admin-users-section h4 {
	margin: 0 0 0.75rem 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #1565c0;
}

.admin-users-line {
	display: flex;
	align-items: center;
}

.admin-users-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #1565c0;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.admin-users-btn:hover {
	background: #0d47a1;
}

.admin-users-btn .material-symbols-outlined {
	font-size: 18px;
}

/* Business Setup Panel Styles */
.business-setup-panel, .first-post-panel {
	color: white;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.setup-header, .first-post-header {
	text-align: center;
	margin-bottom: 2rem;
}

.setup-header h3, .first-post-header h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.setup-header p, .first-post-header p {
	margin: 0;
	opacity: 0.9;
	font-size: 1rem;
}

.setup-progress {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.progress-bar {
	flex: 1;
	height: 8px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: #28a745;
	width: 0%;
	transition: width 0.3s ease;
}

.setup-section {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.setup-section.optional {
	border: 2px dashed rgba(255, 255, 255, 0.3);
}

.setup-section-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.setup-section-header h4 {
	flex: 1;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.required-badge {
	background: #dc3545;
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.optional-badge {
	background: rgba(255, 255, 255, 0.3);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.logo-upload-area {
	position: relative;
}

.logo-placeholder {
	border: 2px dashed rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 3rem 2rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.logo-placeholder:hover {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);
}

.logo-placeholder .material-symbols-outlined {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.7;
}

.logo-preview {
	text-align: center;
}

.logo-preview img {
	max-width: 150px;
	max-height: 150px;
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.change-logo-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.change-logo-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.setup-section textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	resize: vertical;
	backdrop-filter: blur(5px);
}

.setup-section textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.character-counter {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

.optional-fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.optional-fields input {
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	backdrop-filter: blur(5px);
}

.optional-fields input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.setup-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.setup-complete-btn {
	background: #28a745;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.setup-complete-btn:hover:not(.disabled) {
	background: #218838;
	transform: translateY(-2px);
}

.setup-complete-btn.disabled {
	background: rgba(255, 255, 255, 0.3);
	cursor: not-allowed;
	opacity: 0.6;
}

.setup-skip-btn {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.setup-skip-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* First Post Panel Styles */
.post-suggestions h4 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	text-align: center;
}

.suggestion-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.suggestion-card {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.suggestion-card:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
}

.suggestion-card.selected {
	background: rgba(255, 255, 255, 0.3);
	border-color: #28a745;
}

.suggestion-card .material-symbols-outlined {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.suggestion-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.4;
}

.first-post-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.start-post-btn {
	background: #28a745;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.start-post-btn:hover {
	background: #218838;
	transform: translateY(-2px);
}

.skip-post-btn {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.skip-post-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Progressive Business Signup Styles */
.business-question-container {
	position: relative;
	min-height: 400px;
}

.business-question {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.business-question.active {
	display: block;
	opacity: 1;
}

.question-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e4e6ea;
}

.question-number {
	background: #667eea;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}

.question-progress {
	flex: 1;
}

.progress-bar-bg {
	height: 6px;
	background: #e4e6ea;
	border-radius: 3px;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background: #667eea;
	transition: width 0.3s ease;
}

.business-question h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.8rem;
	font-weight: 600;
	color: #1c1e21;
}

.question-description {
	margin: 0 0 2rem 0;
	color: #65676b;
	font-size: 1rem;
	line-height: 1.4;
}

.large-option {
	display: block !important;
	margin-bottom: 1rem;
	border: 2px solid #e4e6ea;
	border-radius: 12px;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.large-option:hover {
	border-color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.large-option input[type="radio"] {
	display: none;
}

.large-option input[type="radio"]:checked + .choice-content {
	background: #f0f2ff;
	border-color: #667eea;
}

.choice-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.choice-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1c1e21;
	margin-bottom: 0.25rem;
}

.choice-subtitle {
	font-size: 0.9rem;
	color: #65676b;
}

.question-input {
	margin-bottom: 2rem;
}

.question-input input,
.question-input textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e4e6ea;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.question-input input:focus,
.question-input textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.char-count {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #65676b;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.category-option {
	display: block;
	border: 2px solid #e4e6ea;
	border-radius: 8px;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-option:hover {
	border-color: #667eea;
	transform: translateY(-2px);
}

.category-option input[type="radio"] {
	display: none;
}

.category-option input[type="radio"]:checked + .category-content {
	background: #f0f2ff;
	border-color: #667eea;
}

.category-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.category-name {
	font-size: 0.95rem;
	font-weight: 500;
	color: #1c1e21;
}

.contact-fields {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-field label {
	font-size: 0.95rem;
	font-weight: 500;
	color: #1c1e21;
}

.contact-field input {
	padding: 0.75rem;
	border: 2px solid #e4e6ea;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.contact-field input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.business-review {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.review-item {
	display: flex;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e4e6ea;
}

.review-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.review-item strong {
	min-width: 120px;
	color: #1c1e21;
}

.review-item span {
	color: #65676b;
	flex: 1;
}

.question-buttons {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 2rem;
}

.back-btn, .next-btn {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.back-btn {
	background: #f8f9fa;
	color: #65676b;
	border: 1px solid #e4e6ea;
}

.back-btn:hover {
	background: #e4e6ea;
}

.next-btn {
	background: #667eea;
	color: white;
}

.next-btn:hover:not(:disabled) {
	background: #5a6fd8;
	transform: translateY(-1px);
}

.next-btn:disabled {
	background: #e4e6ea;
	color: #65676b;
	cursor: not-allowed;
}

.create-btn {
	background: #28a745;
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.create-btn:hover {
	background: #218838;
	transform: translateY(-1px);
}

#main-step-buttons {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e4e6ea;
}

/* Logo Upload Styles for Edit Form */
.logo-upload-container {
	margin-bottom: 1rem;
}

.logo-upload-area {
	border: 2px dashed #e4e6ea;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.logo-upload-area:hover {
	border-color: #667eea;
	background: #f8f9ff;
}

.logo-preview {
	position: relative;
	width: 100%;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-placeholder {
	text-align: center;
	padding: 2rem;
	color: #65676b;
}

.logo-placeholder .material-symbols-outlined {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	opacity: 0.7;
}

.logo-placeholder p {
	margin: 0.5rem 0;
	font-size: 1rem;
	font-weight: 500;
}

.logo-placeholder small {
	color: #8a8d91;
	font-size: 0.85rem;
}

#edit-logo-img {
	max-width: 100%;
	max-height: 150px;
	border-radius: 8px;
	object-fit: contain;
}

.logo-actions {
	display: none;
	gap: 0.5rem;
	margin-top: 1rem;
	align-items: center;
}

.change-logo-btn, .remove-logo-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.change-logo-btn {
	background: #f0f2ff;
	color: #667eea;
	border: 1px solid #667eea;
}

.change-logo-btn:hover {
	background: #667eea;
	color: white;
}

.remove-logo-btn {
	background: #fff5f5;
	color: #dc3545;
	border: 1px solid #dc3545;
}

.remove-logo-btn:hover {
	background: #dc3545;
	color: white;
}

.change-logo-btn .material-symbols-outlined,
.remove-logo-btn .material-symbols-outlined {
	font-size: 16px;
}

/* Admin Users Page Styles */
.admin-users-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.admin-users-header {
	margin-bottom: 2rem;
}

.admin-users-header h2 {
	margin: 1rem 0 0.5rem 0;
	font-size: 2rem;
	font-weight: 600;
	color: #1c1e21;
}

.admin-users-header p {
	margin: 0;
	color: #65676b;
	font-size: 1rem;
}

.admin-users-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.stat-card {
	background: white;
	border: 1px solid #e4e6ea;
	border-radius: 12px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease;
}

.stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card .material-symbols-outlined {
	font-size: 2.5rem;
	color: #1565c0;
	background: #e3f2fd;
	padding: 0.75rem;
	border-radius: 50%;
}

.stat-info {
	flex: 1;
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #1c1e21;
	line-height: 1;
}

.stat-label {
	font-size: 0.9rem;
	color: #65676b;
	margin-top: 0.25rem;
}

.admin-users-table-container {
	background: white;
	border: 1px solid #e4e6ea;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-header {
	padding: 1.5rem;
	border-bottom: 1px solid #e4e6ea;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
}

.table-header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1c1e21;
}

.table-filters {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.table-filters input {
	padding: 0.5rem 0.75rem;
	border: 1px solid #e4e6ea;
	border-radius: 6px;
	font-size: 0.9rem;
	width: 200px;
}

.table-filters select {
	padding: 0.5rem 0.75rem;
	border: 1px solid #e4e6ea;
	border-radius: 6px;
	font-size: 0.9rem;
	background: white;
}

.users-table-wrapper {
	overflow-x: auto;
}

.admin-users-table {
	width: 100%;
	border-collapse: collapse;
}

.admin-users-table th {
	background: #f8f9fa;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #1c1e21;
	border-bottom: 1px solid #e4e6ea;
	font-size: 0.9rem;
}

.admin-users-table td {
	padding: 1rem;
	border-bottom: 1px solid #f0f2f5;
	vertical-align: middle;
}

.admin-users-table tr:hover {
	background: #f8f9fa;
}

.user-cell {
	min-width: 200px;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1565c0;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1rem;
}

.user-details {
	flex: 1;
}

.user-name {
	font-weight: 600;
	color: #1c1e21;
	font-size: 0.95rem;
}

.user-id {
	font-size: 0.8rem;
	color: #65676b;
	margin-top: 0.125rem;
}

.email-cell {
	min-width: 200px;
}

.email-link {
	color: #1565c0;
	text-decoration: none;
	font-size: 0.9rem;
}

.email-link:hover {
	text-decoration: underline;
}

.date-cell {
	min-width: 100px;
	font-size: 0.9rem;
	color: #65676b;
}

.count-cell {
	text-align: center;
	min-width: 80px;
}

.count-badge {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	background: #e4e6ea;
	color: #65676b;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
}

.count-badge.has-businesses {
	background: #e8f5e8;
	color: #2e7d32;
}

.actions-cell {
	min-width: 100px;
}

.action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin-right: 0.5rem;
	transition: all 0.2s ease;
}

.action-btn .material-symbols-outlined {
	font-size: 16px;
}

.view-btn {
	background: #e3f2fd;
	color: #1565c0;
}

.view-btn:hover {
	background: #1565c0;
	color: white;
}

.contact-btn {
	background: #f3e5f5;
	color: #7b1fa2;
}

.contact-btn:hover {
	background: #7b1fa2;
	color: white;
}

.loading-row, .error-row, .no-data-row {
	text-align: center;
	color: #65676b;
	font-style: italic;
	padding: 2rem !important;
}

.error-row {
	color: #dc3545;
}

/* Business Profile Cards in User Profile */
.business-profile-card {
	background: white;
	border: 1px solid #e4e6ea;
	border-radius: 8px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 1rem;
}

.business-profile-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-profile-card .business-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.business-profile-card .business-card-logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	overflow: hidden;
}

.business-profile-card .business-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-profile-card .business-card-logo-placeholder {
	width: 100%;
	height: 100%;
	background: #667eea;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.2rem;
}

.business-profile-card .business-card-info {
	flex: 1;
}

.business-profile-card .business-card-name {
	font-weight: 600;
	color: #1c1e21;
	margin-bottom: 0.25rem;
}

.business-profile-card .business-card-category {
	font-size: 0.85rem;
	color: #65676b;
}

.business-profile-card .business-card-description {
	color: #65676b;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Follow button states */
.follow-user-btn.following {
	background: #dc3545;
	border-color: #dc3545;
}

.follow-user-btn.following:hover {
	background: #c82333;
	border-color: #c82333;
}

/* Mobile responsiveness for questionnaire */
@media (max-width: 768px) {
	.category-grid {
		grid-template-columns: 1fr;
	}
	
	.large-option .choice-content {
		padding: 1rem;
	}
	
	.question-buttons {
		flex-direction: column;
	}
	
	.back-btn, .next-btn, .create-btn {
		width: 100%;
		padding: 1rem;
	}
	
	.logo-actions {
		flex-direction: column;
	}
	
	.change-logo-btn, .remove-logo-btn {
		width: 100%;
		justify-content: center;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsiveness for admin dropdown */
@media (max-width: 768px) {
	.admin-message-line {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.admin-message-line input,
	.admin-message-line select {
		width: 100%;
	}
	
	.admin-send-btn {
		width: 100%;
		padding: 0.75rem;
	}
}

/* Legacy admin panel styles (keeping for backwards compatibility) */
.admin-panel {
	background: white;
	border-radius: 0 0 12px 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border: 1px solid #e1e8ed;
}

.admin-panel h3 {
	color: #dc3545;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.admin-message-form textarea {
	width: 100%;
	min-height: 80px;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	resize: vertical;
	margin-bottom: 1rem;
}

.admin-message-options {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.admin-message-options select {
	flex: 1;
	padding: 0.75rem;
	border: 2px solid #e1e8ed;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	background: white;
	color: #495057;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.admin-message-options select:focus {
	outline: none;
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.admin-message-options select:hover {
	border-color: #dc3545;
}

.admin-message-options button {
	background: #dc3545;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.2s;
}

.admin-message-options button:hover {
	background: #c82333;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.loading-screen.hidden {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.loading-container {
	text-align: center;
}

.loading-logo {
	max-width: 150px;
	margin-bottom: 1rem;
}

/* Image Upload Section */
.image-upload-section {
	margin: 1rem 0;
}

.image-upload-section label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.image-upload-section input[type="file"] {
	width: 100%;
	padding: 0.5rem;
	border: 2px dashed #ccc;
	border-radius: 8px;
	background: #f9f9f9;
	cursor: pointer;
}

.image-upload-section input[type="file"]:hover {
	border-color: #007bff;
}

#image-previews {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.image-preview {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #ddd;
}

.image-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.remove-image {
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgba(255, 0, 0, 0.8);
	color: white;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
}

.remove-image:hover {
	background: rgba(255, 0, 0, 1);
}

/* Post Images */
.post-images {
	display: flex;
	justify-content: space-around;
	margin: 1rem 0;
}

.post-image {
	width: 30%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.post-image:hover {
	transform: scale(1.02);
}

/* Business Gallery */
.business-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.gallery-item {
	position: relative;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.gallery-image:hover {
	transform: scale(1.05);
}

.no-gallery {
	text-align: center;
	color: #666;
	font-style: italic;
	padding: 2rem;
}

/* Edit Business Page Styles */
.edit-business-container {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 2rem;
}

.edit-business-content {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-top: 2rem;
}

.edit-business-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-bottom: 1px solid #e4e6ea;
	text-align: center;
}

.edit-business-header h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.8rem;
	color: #222;
	border: none;
	padding: 0;
}

.edit-business-header p {
	margin: 0;
	color: #666;
	font-size: 1rem;
}

.edit-business-form-section {
	padding: 2rem;
}

.logo-upload-section {
	display:none;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
	margin-bottom: 0;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

.form-group small {
	display: block;
	margin-top: 0.5rem;
	color: #666;
	font-size: 0.85rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e4e6ea;
}

.update-btn {
	flex: 1;
	background: #007bff;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.update-btn:hover {
	background: #0056b3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.delete-btn {
	background: #dc3545;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.delete-btn:hover {
	background: #c82333;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.edit-business-container .back-btn {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.edit-business-container .back-btn:hover {
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

.edit-business-container .back-btn .material-symbols-outlined {
	font-size: 18px;
}

@media (max-width: 768px) {
	.edit-business-container {
		width: 95%;
		padding-top: 1rem;
	}
	
	.edit-business-header,
	.edit-business-form-section {
		padding: 1.5rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.form-actions {
		flex-direction: column;
	}
}

/* Dashboard Page Styles */
.dashboard-container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 2rem;
}

.dashboard-header {
	text-align: center;
	margin-bottom: 3rem;
}

.dashboard-header h2 {
	margin: 0 0 0.5rem 0;
	font-size: 2.2rem;
	color: #222;
	border: none;
	padding: 0;
}

.dashboard-header p {
	margin: 0;
	color: #666;
	font-size: 1.1rem;
}

.dashboard-layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: start;
}

.businesses-overview {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	border: 1px solid #e1e5e9;
	overflow: hidden;
}

.add-business-section {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.overview-header {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	padding: 1.5rem;
	color: white;
}

.overview-header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: white;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
}

.overview-header h3 .material-symbols-outlined {
	font-size: 22px;
	color: rgba(255, 255, 255, 0.9);
}

.section-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-bottom: 1px solid #e4e6ea;
}

.section-header h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.4rem;
	color: #222;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.section-header h3 .material-symbols-outlined {
	font-size: 24px;
	color: #007bff;
}

.section-header p {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
}

.businesses-list {
	padding: 0;
	max-height: 400px;
	overflow-y: auto;
}

.add-business-form {
	padding: 2rem;
}

.add-business-btn {
	background: #28a745;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
}

.add-business-btn:hover {
	background: #218838;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.add-business-btn .material-symbols-outlined {
	font-size: 20px;
}

/* Business items in dashboard overview */
.business-item {
	background: white;
	border-bottom: 1px solid #e1e5e9;
	padding: 1rem 1.5rem;
	transition: all 0.2s ease;
	cursor: pointer;
	position: relative;
}

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

.business-item:hover {
	background: #f8f9fa;
}

.business-item-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}

.business-item-info {
	flex: 1;
	min-width: 0;
}

.business-item-title {
	margin: 0 0 0.25rem 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #222;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.business-item-category {
	margin: 0;
	color: #666;
	font-size: 0.8rem;
}

.business-item-stats {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 1rem;
}

.heart-count {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	background: #fff1f1;
	border: 1px solid #fecaca;
	border-radius: 12px;
	padding: 0.25rem 0.5rem;
	font-size: 0.75rem;
	color: #dc2626;
	font-weight: 500;
}

.heart-count .material-symbols-outlined {
	font-size: 14px;
	color: #ef4444;
}

.business-item-actions {
	display: flex;
	gap: 0.5rem;
}

.business-item-actions button {
	padding: 0.4rem 0.75rem;
	border: 1px solid;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.view-business-btn {
	background: #007bff;
	border-color: #007bff;
	color: white;
}

.view-business-btn:hover {
	background: #0056b3;
	border-color: #0056b3;
}

.edit-business-btn {
	background: transparent;
	border-color: #6c757d;
	color: #6c757d;
}

.edit-business-btn:hover {
	background: #6c757d;
	color: rgb(85, 85, 85);
}

.no-businesses {
	text-align: center;
	padding: 2rem 1.5rem;
	color: #666;
	background: white;
}

.no-businesses .material-symbols-outlined {
	font-size: 36px;
	color: #ccc;
	margin-bottom: 1rem;
	display: block;
}

.no-businesses h4 {
	margin: 0 0 0.5rem 0;
	color: #666;
	font-size: 0.9rem;
	font-weight: 600;
}

.no-businesses p {
	margin: 0;
	font-size: 0.8rem;
	color: #888;
}

@media (max-width: 1024px) {
	.dashboard-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.dashboard-container {
		width: 95%;
	}
}

@media (max-width: 768px) {
	.dashboard-header h2 {
		font-size: 1.8rem;
	}
	
	.section-header,
	.add-business-form {
		padding: 1.5rem;
	}
	
	.overview-header {
		padding: 1rem;
	}
	
	.business-item {
		padding: 0.75rem 1rem;
	}
	
	.business-item-main {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.business-item-stats {
		margin-left: 0;
	}
}

/* Follow Button Styles */
.follow-user-btn,
.follow-business-btn {
	background: #007bff;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.follow-user-btn:hover,
.follow-business-btn:hover {
	background: #0056b3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.follow-user-btn.following,
.follow-business-btn.following {
	background: #28a745;
}

.follow-user-btn.following:hover,
.follow-business-btn.following:hover {
	background: #218838;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Followers Section */
.followers-section {
	margin-top: 2rem;
}

.followers-section h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	color: #333;
}

.followers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}

.follower-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: white;
	border-radius: 8px;
	border: 1px solid #e1e5e9;
	cursor: pointer;
	transition: all 0.2s ease;
}

.follower-item:hover {
	border-color: #007bff;
	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
	transform: translateY(-1px);
}

.follower-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.follower-avatar-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #007bff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.1rem;
}

.follower-name {
	font-weight: 500;
	color: #333;
	flex: 1;
}

.no-followers {
	text-align: center;
	color: #666;
	font-style: italic;
	padding: 2rem;
	grid-column: 1 / -1;
}

@media (max-width: 768px) {
	.followers-grid {
		grid-template-columns: 1fr;
	}
	
	.follower-item {
		padding: 0.75rem;
	}
}

/* Image Modal */
.image-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	cursor: pointer;
}

.image-modal-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	cursor: default;
}

.image-modal-content img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.close-modal {
	position: absolute;
	top: -40px;
	right: 0;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.close-modal:hover {
	background: white;
}

/* Business Edit Section */
.business-edit-section {
	margin-top: 1rem;
}

.edit-business-btn {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: none;
	border-radius: 6px;
	padding: 0.35rem 0.7rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.2s ease;
	width: fit-content;
}

.edit-business-btn:hover {
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color:#333;
}

.edit-business-btn .material-symbols-outlined {
	font-size: 14px;
}

/* Business Share Section */
.business-share-section {
	margin-top: 1rem;
}

.share-business-btn {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: none;
	border-radius: 6px;
	padding: 0.5rem 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	width: fit-content;
}

.share-business-btn:hover {
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color:#333;
}

.share-business-btn .material-symbols-outlined {
	font-size: 18px;
}

/* Post Form Bottom Row */
.post-form-bottom {
	display: flex;
	align-items: flex-end;
	gap: 0.75rem;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e4e6ea;
}

.post-form-bottom #post-business {
	flex: 1;
	min-width: 140px;
	margin-bottom: 0;
	border: 1px solid #e4e6ea;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 14px;
	background: #f0f2f5;
	color: #1c1e21;
	transition: all 0.2s ease;
}

.post-form-bottom #post-business:focus {
	background: #ffffff;
	border-color: #1877f2;
	box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
	outline: none;
}

.post-form-bottom .image-upload-section {
	flex: 1;
	margin: 0;
}

.post-form-bottom .image-upload-section label {
	font-size: 12px;
	font-weight: 600;
	color: #65676b;
	margin-bottom: 4px;
	display: block;
}

.post-form-bottom .image-upload-section input[type="file"] {
	font-size: 12px;
	padding: 6px 10px;
	border: 1px solid #e4e6ea;
	border-radius: 6px;
	background: #f0f2f5;
	color: #1c1e21;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 0;
}

.post-form-bottom .image-upload-section input[type="file"]:hover {
	background: #e4e6ea;
	border-color: #1877f2;
}

.post-form-bottom .post-actions {
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	border: none;
}

.post-form-bottom .post-actions button {
	margin: 0;
	background: #007bff;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post-form-bottom .post-actions button:hover {
	background: #0056b3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.post-form-bottom .post-actions button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Step-by-Step Signup Form */
.signup-steps {
	margin-bottom: 2rem;
}

.step-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.step {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e4e6ea;
	color: #65676b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.step.active {
	background: #1877f2;
	color: white;
}

.step-line {
	width: 60px;
	height: 2px;
	background: #e4e6ea;
	transition: all 0.3s ease;
}

.step-line.completed {
	background: #1877f2;
}

.signup-step {
	display: none;
	animation: fadeIn 0.3s ease;
}

.signup-step.active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.step-description {
	color: #65676b;
	font-size: 14px;
	margin-bottom: 2rem;
	text-align: center;
}

.business-choice {
	margin-bottom: 2rem;
}

.choice-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	border: 2px solid #e4e6ea;
	border-radius: 8px;
	margin-bottom: 0.75rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.choice-option:hover {
	border-color: #1877f2;
	background: #f0f8ff;
}

.choice-option input[type="radio"] {
	width: auto;
	margin: 0;
	transform: scale(1.3);
}

.choice-option input[type="radio"]:checked + .choice-label {
	font-weight: 600;
	color: #1877f2;
}

.choice-option:has(input[type="radio"]:checked) {
	border-color: #1877f2;
	background: #f0f8ff;
}

.choice-label {
	font-size: 15px;
	color: #1c1e21;
	transition: all 0.2s ease;
}

.business-signup-fields {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid #e4e6ea;
}

.business-signup-fields input,
.business-signup-fields textarea {
	background: white;
	border: 1px solid #ddd;
	transition: all 0.2s ease;
}

.business-signup-fields input:focus,
.business-signup-fields textarea:focus {
	border-color: #1877f2;
	box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

.step-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.next-btn, .prev-btn, .create-btn {
	flex: 1;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 0;
}

.next-btn, .create-btn {
	background: #1877f2;
	color: white;
}

.next-btn:hover, .create-btn:hover {
	background: #166fe5;
}

.prev-btn {
	background: #e4e6ea;
	color: #65676b;
}

.prev-btn:hover {
	background: #d8dadf;
}
.container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem;
}
.main-layout {
	display: flex;
	gap: 2rem;
	min-height: calc(100vh - 120px);
}

.assist-tools-section {
	flex: 0.3;
	position: relative;
	background: transparent;
	padding: 0;
}

.assist-tools-header {
	background: transparent;
	padding: 1rem;
}

.assist-tools-header h4 {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	text-align: center;
	border: none;
	padding: 0;
}

.assist-tools-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	padding: 1rem;
}

.assist-tool-tab {
	aspect-ratio: 1;
	background: #f8f9fa;
	border: 1px solid #e1e5e9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: not-allowed;
	transition: all 0.2s ease;
	position: relative;
}

.assist-tool-tab.disabled {
	opacity: 0.4;
	pointer-events: none;
}

.assist-tool-tab.disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 4px,
		rgba(255, 255, 255, 0.8) 4px,
		rgba(255, 255, 255, 0.8) 8px
	);
	border-radius: 8px;
}

.assist-tool-tab .material-symbols-outlined {
	font-size: 16px;
	color: #6c757d;
	z-index: 1;
	position: relative;
}

.assist-tool-tab:hover {
	background: #e9ecef;
	border-color: #007bff;
}

.assist-tool-tab:not(.disabled) {
	cursor: pointer;
	opacity: 1;
}

.assist-tool-tab:not(.disabled):hover {
	background: #007bff;
}

.assist-tool-tab:not(.disabled):hover .material-symbols-outlined {
	color: white;
}

/* CrossPaths specific styling */
.assist-tool-tab:has(img) {
	flex-direction: column;
	gap: 4px;
	padding: 8px;
	aspect-ratio: auto;
	min-height: 60px;
}

.assist-tool-tab .assist-tool-text {
	font-size: 10px;
	font-weight: 600;
	color: #6c757d;
	text-align: center;
	line-height: 1;
	z-index: 1;
	position: relative;
}

.assist-tool-tab:not(.disabled):hover .assist-tool-text {
	color: white;
}

.assist-tool-tab:not(.disabled):hover img {
	filter: brightness(0) invert(1);
}

.feed-section {
	flex: 2.2;
}

.feed-section::-webkit-scrollbar {
	display: none;
}

.feed-section {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.events-sidebar-section {
	flex: 0 0 80px;
	width: 80px;
	background: transparent;
	padding: 0;
	position: sticky;
	top: 120px;
	height: fit-content;
}

.events-sidebar-section h3 {
	margin: 0 0 0.75rem 0;
	font-size: 0.8rem;
	font-weight: 600;
	color: #333;
	text-align: center;
	border: none;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#sidebar-events-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sidebar-event-item {
	background: white;
	border-radius: 8px;
	padding: 0.75rem 0.5rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid #e1e8ed;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.sidebar-event-item:hover {
	transform: scale(1.05);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border-color: #007bff;
}

.sidebar-event-item.today {
	background: #fff3cd;
	border-color: #ffc107;
}

.sidebar-event-date {
	font-size: 0.7rem;
	font-weight: 600;
	color: #6c757d;
	text-transform: uppercase;
}

.sidebar-event-day {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
}

.sidebar-event-title {
	font-size: 0.65rem;
	color: #6c757d;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 0.25rem;
	max-width: 100%;
}
.feed {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-right: 0.5rem;
}


.feed::-webkit-scrollbar {
	display: none;
}
.businesses-section {
	flex: 0.8;
	position: relative;
	background: transparent;
	padding: 0;
}
.businesses-section .section {
	background: transparent;
	padding: 1rem;
}

.businesses-section .section h3 {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	text-align: center;
	border: none;
	padding: 0;
}

.businesses-section .section .feed {
	overflow: hidden;
	gap: 0.5rem;
}



.businesses-section .businesses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0.75rem;
	width: 100%;
	max-width: 100%;
}

.businesses-section .business-logo-item {
	aspect-ratio: 1;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 2px solid transparent;
	overflow: hidden;
	position: relative;
}

.businesses-section .business-logo-item:hover {
	border-color: #007bff;
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.businesses-section .business-logo {
	width: 24px;
	height: 24px;
	font-size: 0.7rem;
}

.businesses-section .business-logo-img {
	width: 24px;
	height: 24px;
}

.businesses-section .business-logo-name {
	font-size: 0.7rem;
	line-height: 1.2;
	margin-top: 0.25rem;
}
header {
	background: rgba(255, 255, 255);
	backdrop-filter: blur(10px);
	color: black;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}
body.login-page header {
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
}

body.login-page .header-search {
	display: none;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}
.header-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}
.header-search {
	flex: 1;
	max-width: 600px;
	position: relative;
	display: block;
	margin-bottom: 0;
}
#header-search-input {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 24px;
	font-size: 16px;
	background: #f8f9fa;
	outline: none;
	transition: all 0.2s ease;
	margin: 0;
}
#header-search-input:focus {
	border-color: #007bff;
	background: white;
	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}
#header-search-input::placeholder {
	color: #6c757d;
}
.header-search-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	margin-top: 8px;
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
}
.header-search-dropdown .search-category {
	padding: 1rem;
	border-bottom: 1px solid #f0f0f0;
}
.header-search-dropdown .search-category:last-child {
	border-bottom: none;
}
.header-search-dropdown .search-category h4 {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}
.header-search-dropdown .search-items {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.header-search-dropdown .search-item {
	padding: 0.75rem;
	background: #f8f9fa;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}
.header-search-dropdown .search-item:hover {
	background: #e9ecef;
	border-color: #007bff;
}
.search-item-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.search-item-title {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 0.9rem;
}
.search-item-subtitle {
	font-size: 0.8rem;
	color: #6c757d;
}

.search-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.search-item-logo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.search-item-logo-placeholder {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(45deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
}

.search-no-results {
	padding: 1rem;
	text-align: center;
	color: #6c757d;
	font-style: italic;
}

mark {
	background: #fff3cd;
	padding: 0 2px;
	border-radius: 2px;
}

/* Businesses Header and Filter */
.businesses-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.category-filter select {
	padding: 0.5rem 1rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	background: white;
	cursor: pointer;
	min-width: 150px;
}

/* Business Cards Grid */
.business-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

/* Business Card Styles */
.business-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border: 1px solid #e1e8ed;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.business-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.business-card-header {
	padding: 1.5rem;
	border-bottom: 1px solid #f0f2f5;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.business-card-logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid #e1e8ed;
}

.business-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-card-logo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 24px;
	text-transform: uppercase;
}

.business-card-info {
	flex: 1;
}

.business-card-name {
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
}

.business-card-category {
	color: #6c757d;
	font-size: 0.9rem;
	background: #f8f9fa;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	display: inline-block;
}

.business-card-body {
	padding: 1rem 1.5rem;
}

.business-card-description {
	color: #495057;
	font-size: 0.9rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.business-card-stats {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #f0f2f5;
	font-size: 0.85rem;
	color: #6c757d;
}

.business-card-stat {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.business-card-stat .material-symbols-outlined {
	font-size: 16px;
}

/* Businesses Page Header */
.businesses-page-header {
	text-align: center;
	margin-bottom: 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid #e1e8ed;
}

.businesses-page-header h2 {
	color: #1a1a1a;
	margin-bottom: 0.5rem;
	font-size: 2rem;
	font-weight: 600;
}

.businesses-page-header p {
	color: #6c757d;
	font-size: 1.1rem;
	margin: 0;
}

/* Add Business Quick Button */
.add-business-quick-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #007bff;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.add-business-quick-btn:hover {
	background: #0056b3;
	transform: translateY(-1px);
}

.add-business-quick-btn .material-symbols-outlined {
	font-size: 18px;
}

/* User Business Cards */
.user-business-card {
	position: relative;
	border: 2px solid #007bff;
}

.owner-badge {
	position: absolute;
	top: -8px;
	left: 12px;
	background: #007bff;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

/* Add Business Card */
.add-business-card {
	border: 2px dashed #007bff;
	background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	transition: all 0.3s ease;
}

.add-business-card:hover {
	background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.15));
	border-color: #0056b3;
	transform: translateY(-2px);
}

.add-business-card-content {
	text-align: center;
	padding: 2rem;
}

.add-business-card .add-icon {
	width: 60px;
	height: 60px;
	background: #007bff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 24px;
}

.add-business-card .add-text {
	font-weight: 600;
	font-size: 1.1rem;
	color: #007bff;
	margin-bottom: 0.5rem;
}

.add-business-card .add-description {
	color: #6c757d;
	font-size: 0.9rem;
}

/* Add Business CTA Section */
.add-business-prompt-section {
	text-align: center;
	padding: 2rem 1rem;
	margin-top: 1rem;
	border-top: 1px solid #e1e8ed;
}

.add-business-cta-btn {
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.add-business-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
	background: linear-gradient(135deg, #0056b3, #004085);
}

.add-business-cta-btn .material-symbols-outlined {
	font-size: 20px;
}
.logo {
	width: 260px;
	height: auto;
	cursor: pointer;
	transition: width 0.3s ease;
}
nav {
	display: flex;
	gap: 6px;
	align-items: center;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.9);
}

nav span:not(.nav-label):not(.material-symbols-outlined) {
	margin-right: 12px;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 14px;
}

.nav-btn {
	background: none;
	border: none;
	color: #5f6368;
	cursor: pointer;
	padding: 8px 10px;
	font-size: 0;
	transition: all 0.2s ease;
	width: auto;
	min-width: 65px;
	height: auto;
	margin-bottom: 0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	outline: none;
	gap: 2px;
}

.nav-btn:hover {
	background: rgba(95, 99, 104, 0.1);
	color: #5f6368;
	border-radius: 8px;
}

.nav-btn.active {
	background: rgba(95, 99, 104, 0.1);
	color: #5f6368;
	border-radius: 8px;
}

.nav-btn:focus {
	outline: none;
}

.nav-btn .material-symbols-outlined {
	font-size: 20px;
	line-height: 1;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
	margin: 0;
	padding: 0;
	transition: color 0.2s ease;
}

.nav-btn:hover .material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.nav-btn[onclick="showHearts()"] .material-symbols-outlined {
	color: #ea4335;
}

.nav-label {
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	color: #5f6368;
	white-space: nowrap;
	margin-top: 1px;
}

.nav-btn:hover .nav-label {
	color: #333;
}
nav button[onclick="showHearts()"]:hover .material-symbols-outlined {
	color: #dc3545;
}

/* Scrolled Header Styles */
header.scrolled {
	padding: 0.5rem 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo {
	width: 180px;
}

header.scrolled #header-search-input {
	padding: 8px 16px;
	font-size: 14px;
}

nav button::before {
	display: none;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
	position: relative;
	display: inline-block;
}

.nav-dropdown .dropdown-toggle {
	position: relative;
}

.nav-dropdown .dropdown-arrow {
	position: absolute;
	right: 2px;
	top: 2px;
	font-size: 12px !important;
	transition: transform 0.2s ease;
}

.nav-dropdown .dropdown-toggle.expanded .dropdown-arrow {
	transform: rotate(180deg);
}

.nav-dropdown-content {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	min-width: 150px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
	border-radius: 8px;
	border: 1px solid #e4e6ea;
	z-index: 1000;
	margin-top: 4px;
	animation: dropdownSlide 0.2s ease;
}

.nav-dropdown-content .dropdown-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	color: #5f6368;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-radius: 0;
	font-size: 14px;
}

.nav-dropdown-content .dropdown-item:first-child {
	border-radius: 8px 8px 0 0;
}

.nav-dropdown-content .dropdown-item:last-child {
	border-radius: 0 0 8px 8px;
}

.nav-dropdown-content .dropdown-item:hover {
	background: #f8f9fa;
}

.nav-dropdown-content .dropdown-item .material-symbols-outlined {
	font-size: 18px;
}

.nav-dropdown-content .dropdown-item.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.nav-dropdown-content .dropdown-item img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
main {
	padding: 2rem 1rem;
}
.page {
	display: block;
}
.hidden {
	display: none;
}
.section {
	margin: 2rem 0;
}
h2 {
	margin-bottom: 1rem;
	color: black;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
	padding-bottom: 0.5rem;
}
h3 {
	margin: 1rem 0 0.5rem 0;
	color: rgb(54, 54, 54);
	font-weight: 400;
	border-bottom: 1px solid #ddd;
	padding-bottom: 0.25rem;
}
form {
	margin-bottom: 2rem;
}
input, textarea, button, select {
	display: block;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	font-family: inherit;
	margin-bottom: 1rem;
	background: white;
	color: #222;
}
button {
	background: white;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
}
button:hover {
	background-color: #000;
	color: #fff;
}
button:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}
textarea {
	min-height: 100px;
	resize: vertical;
}
a {
	color: #007bff;
	text-decoration: underline;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
.back-btn {
	width: auto;
	display: inline-block;
	margin-bottom: 1rem;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ccc;
}
/* Business Page Layout */
.business-page-container {
	max-width: none;
	margin: 0;
	padding: 0;
}

#business-page {
	padding: 0;
}

#business-page main {
	padding: 0;
}

.business-hero-section {
	position: relative;
	width: 100vw;
	min-height: 400px;
	height: auto;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
}

.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #aeddec 0%, #e3eeef 60%, #95c7cd 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.hero-overlay-container {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1400px;
	z-index: 2;
	padding-bottom: 2rem;
}

.hero-logo-info {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.hero-logo-container {
	/* flex-shrink: 0; */
	/* transform: translateY(0%); */
}

.hero-business-logo {
	width: 180px;
	height: 180px;
	border-radius: 12px;
	object-fit: cover;
	background: white;
}

.hero-business-info {
	flex: 1;
	color: white;
	padding-bottom: 1rem;
}

.hero-business-name {
	font-size: 3rem;
	font-weight: 700;
	color: white;
	margin: 0 0 0.5rem 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.business-content-container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 80px;
}

.business-category {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.business-stats {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.stat {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}

.stat .material-symbols-outlined {
	font-size: 18px;
	color: #fbbc04;
}

.business-content {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.business-section {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.business-section:last-child {
	border-bottom: none;
}

.business-description {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5f6368;
	margin: 0;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item .material-symbols-outlined {
	font-size: 20px;
	color: #5f6368;
	flex-shrink: 0;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.contact-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: #5f6368;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-value {
	font-size: 0.9rem;
	color: #333;
}

.contact-value a {
	color: #1976d2;
	text-decoration: none;
}

.contact-value a:hover {
	text-decoration: underline;
}

.business-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.primary-btn {
	flex: 1;
	min-width: 120px;
	padding: 0.75rem 1rem;
	background: #1976d2;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.primary-btn:hover {
	background: #1565c0;
}

.primary-btn .material-symbols-outlined {
	font-size: 18px;
}

.secondary-btn {
	flex: 1;
	min-width: 100px;
	padding: 0.75rem 1rem;
	background: white;
	color: #5f6368;
	border: 1px solid rgba(95, 99, 104, 0.3);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.secondary-btn:hover {
	background: rgba(95, 99, 104, 0.05);
	border-color: rgba(95, 99, 104, 0.5);
}

.secondary-btn .material-symbols-outlined {
	font-size: 18px;
}

.business-content-container .back-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	padding: 0.75rem 1.25rem;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	color: #5f6368;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.business-content-container .back-btn:hover {
	background: rgba(95, 99, 104, 0.05);
}

.business-content-container .back-btn .material-symbols-outlined {
	font-size: 18px;
}

.business-actions {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}
.business-actions button {
	width: auto;
	padding: 8px 16px;
	flex: 1;
	min-width: 100px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.post {
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.2s ease;
}
.post:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-main-container {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.post-business-logo {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

.post-business-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-business-logo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #007bff, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 20px;
	text-transform: uppercase;
}

.post-content-wrapper {
	flex: 1;
	position: relative;
}
.post-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.post-header {
	font-weight: bold;
	color: black;
	cursor: pointer;
	position: relative;
	display: inline-block;
	transition: color 0.2s ease;
	flex: 1;
}

.post-header[onclick]:hover {
	color: #007bff;
	text-decoration: underline;
}

.delete-post-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25rem;
	margin: 0;
	width: auto;
	height: auto;
	border-radius: 4px;
	font-size: 1rem;
	opacity: 0.6;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.delete-post-btn:hover {
	opacity: 1;
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}
.post-time {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.delete-text {
	font-size: 0.85rem;
	color: #999;
	margin-right: 0.5rem;
}
.post-content {
	margin-bottom: 0.5rem;
	line-height: 1.5;
}
.business {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 1.8rem;
	margin-bottom: 1.5rem;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
}
.business:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-color: #007bff;
}
.business::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #007bff, #0056b3);
}
.business-name {
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	cursor: pointer;
	color: #1a1a1a;
	text-decoration: none;
	line-height: 1.2;
	transition: color 0.2s ease;
}
.business-name:hover {
	color: #007bff;
	text-decoration: none;
}
.business-category {
	font-style: italic;
	margin-bottom: 1rem;
	color: #6c757d;
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.business-description {
	margin-bottom: 1.2rem;
	line-height: 1.6;
	color: #495057;
	font-size: 0.95rem;
}
.business-contact {
	font-size: 0.85rem;
	color: #6c757d;
	margin-bottom: 1rem;
	line-height: 1.5;
	padding: 0.8rem;
	background: rgba(0, 123, 255, 0.05);
	border-radius: 6px;
	border-left: 3px solid #007bff;
}
.business-contact strong {
	color: #495057;
	font-weight: 600;
}
.business-website {
	margin-bottom: 1rem;
}
.business-website a {
	color: #007bff;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}
.business-website a:hover {
	color: #0056b3;
	text-decoration: underline;
}
.owner-badge {
	background: linear-gradient(135deg, #000000, #333333);
	color: white;
	padding: 0.4rem 0.8rem;
	font-size: 0.75rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
	border-radius: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.businesses-section .business {
	background: none;
	border: none;
	border-radius: 0;
	padding: 0.75rem 0;
	margin-bottom: 0;
	position: relative;
	box-shadow: none;
	overflow: visible;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: none;
}
.businesses-section .business:hover {
	transform: none;
	box-shadow: none;
	border-color: transparent;
}
.businesses-section .business::before {
	content: '';
	position: static;
	width: 12px;
	height: 12px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	flex-shrink: 0;
}
.businesses-section .business-name {
	font-weight: 400;
	font-size: 1rem;
	margin: 0;
	cursor: pointer;
	color: #1a1a1a;
	text-decoration: none;
	line-height: 1;
	transition: color 0.2s ease;
}
.businesses-section .business-name:hover {
	color: #007bff;
	text-decoration: none;
}
.businesses-section .business-category,.businesses-section .business-description,.businesses-section .business-contact,.businesses-section .business-website,.businesses-section .business-actions,.businesses-section .owner-badge {
	display: none;
}
.businesses-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 0.5rem;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
.business-logo-item {
	aspect-ratio: 1;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0.25rem;
	text-align: center;
	min-height: 0;
	box-sizing: border-box;
}
.business-logo-item:hover {
	border-color: #007bff;
	box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
	transform: translateY(-2px);
}
.business-logo {
	width: 30px;
	height: 30px;
	background: #f8f9fa;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	margin-bottom: 0.25rem;
	flex-shrink: 0;
}
.business-logo-name {
	font-size: 0.65rem;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}
.profile-card {
	border-radius: 8px;
	margin: 2rem 0 1rem 0;
}
.profile-card h3 {
	margin-top: 0;
	color: black;
	border-bottom: none;
}

/* First post highlight styling */
.profile-card.first-post-highlight {
	background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
	border: 2px solid #ffc107;
	box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
	animation: firstPostPulse 2s ease-in-out infinite;
	position: relative;
	padding:25px;
}

.profile-card.first-post-highlight::before {
	content: "👋 Welcome!";
	position: absolute;
	top: -10px;
	right: 15px;
	background: #ffc107;
	color: #333;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.profile-card.first-post-highlight h3 {
	color: #f57c00;
	font-weight: 600;
}

.profile-card.first-post-highlight #post-text {
	border: 2px solid #ffc107;
	background: #fffbf0;
	transition: all 0.3s ease;
}

.profile-card.first-post-highlight #post-text:focus {
	border-color: #ff9800;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

@keyframes firstPostPulse {
	0%, 100% {
		box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
	}
	50% {
		box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
	}
}

/* Follow Suggestions Styling */
.follow-suggestions-container {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid #e4e6ea;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	animation: slideInFromTop 0.5s ease-out;
	display:none;
}

.follow-suggestions-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.follow-suggestions-header h3 {
	color: #1877f2;
	margin: 0 0 0.5rem 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.follow-suggestions-header p {
	color: #65676b;
	margin: 0;
	font-size: 0.95rem;
}

.suggestions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.suggestion-section h4 {
	color: #333;
	margin: 0 0 1rem 0;
	font-size: 1rem;
	font-weight: 600;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e4e6ea;
}

.suggestions-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.suggestion-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: white;
	border: 1px solid #e4e6ea;
	border-radius: 8px;
	transition: all 0.2s ease;
	cursor: pointer;
}

.suggestion-item:hover {
	border-color: #1877f2;
	box-shadow: 0 2px 8px rgba(24, 119, 242, 0.1);
	transform: translateY(-1px);
}

.suggestion-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.suggestion-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-placeholder {
	width: 100%;
	height: 100%;
	background: #1877f2;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.1rem;
}

.business-avatar .avatar-placeholder {
	background: #42a5f5;
}

.suggestion-info {
	flex: 1;
	min-width: 0;
}

.suggestion-name {
	font-weight: 600;
	color: #333;
	font-size: 0.9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.suggestion-type {
	color: #65676b;
	font-size: 0.8rem;
}

.follow-suggestion-btn {
	background: #1877f2;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.follow-suggestion-btn:hover {
	background: #166fe5;
	transform: scale(1.02);
}

.follow-suggestion-btn:disabled {
	background: #42b883;
	cursor: not-allowed;
	transform: none;
}

.suggestions-footer {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid #e4e6ea;
}

.dismiss-suggestions {
	background: none;
	border: 1px solid #65676b;
	color: #65676b;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.dismiss-suggestions:hover {
	background: #65676b;
	color: white;
}

@keyframes slideInFromTop {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.suggestions-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.suggestions-list {
		grid-template-columns: 1fr;
	}
	
	.suggestion-item {
		padding: 1rem;
	}
	
	.follow-suggestions-container {
		padding: 1rem;
		margin-bottom: 1rem;
	}
}
.feed {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow-y: auto;
	padding-right: 0.5rem;
}
.feed::-webkit-scrollbar {
	width: 6px;
}
.feed::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
}
.feed::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}
.feed::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.5);
}
.business-detail {
	background: #ffffff;
	border-radius: 8px;
	margin: 2rem 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.business-detail .business-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-bottom: 1px solid #e4e6ea;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.business-detail .business-logo {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.business-detail .business-info {
	flex: 1;
}
.business-detail h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #1c1e21;
	margin-bottom: 0.5rem;
	border-bottom: none;
	line-height: 1.2;
}
.business-detail .category {
	font-size: 1rem;
	color: #65676b;
	font-weight: 500;
	margin-bottom: 1rem;
	text-transform: capitalize;
}
.business-detail .business-stats {
	display: flex;
	gap: 2rem;
	margin-top: 1rem;
}
.business-detail .stat-item {
	text-align: center;
}
.business-detail .stat-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1c1e21;
}
.business-detail .stat-label {
	font-size: 0.85rem;
	color: #65676b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.business-detail .business-content {
	padding: 0;
}
.business-detail .description {
	padding: 2rem;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #1c1e21;
	border-bottom: 1px solid #e4e6ea;
}
.contact-info {
	background: #f8f9fa;
	border: none;
	border-radius: 0;
	padding: 2rem;
	margin: 0;
}
.contact-info h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1c1e21;
	margin-bottom: 1.5rem;
}
.contact-info .contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}
.contact-info .contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e4e6ea;
	transition: all 0.2s ease;
}
.contact-info .contact-item:hover {
	border-color: #1877f2;
	box-shadow: 0 2px 8px rgba(24, 119, 242, 0.1);
}
.contact-info .contact-icon {
	width: 40px;
	height: 40px;
	background: #e7f3ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #1877f2;
	flex-shrink: 0;
}
.contact-info .contact-details {
	flex: 1;
}
.contact-info .contact-label {
	font-size: 0.85rem;
	color: #65676b;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
}
.contact-info .contact-value {
	font-size: 1rem;
	color: #1c1e21;
	font-weight: 500;
}
.contact-info .contact-value a {
	color: #1877f2;
	text-decoration: none;
	transition: color 0.2s ease;
}
.contact-info .contact-value a:hover {
	color: #166fe5;
	text-decoration: underline;
}
.business-detail .business-actions {
	padding: 2rem;
	background: #f8f9fa;
	border-top: 1px solid #e4e6ea;
	display: flex;
	gap: 1rem;
	justify-content: center;
}
.business-detail .business-actions button {
	background: #1877f2;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	width: auto;
	margin-bottom: 0;
	min-width: 120px;
	text-transform: none;
	letter-spacing: normal;
}
.business-detail .business-actions button:hover {
	background: #166fe5;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}
.business-detail .business-actions button.secondary {
	background: #e4e6ea;
	color: #1c1e21;
}
.business-detail .business-actions button.secondary:hover {
	background: #d8dadf;
	color: #1c1e21;
}
.loading {
	text-align: center;
	padding: 2rem;
	color: #666;
	font-style: italic;
}
.error {
	color: #dc3545;
	margin-top: 0.5rem;
	padding: 0.5rem;
	background: rgba(220, 53, 69, 0.1);
	border: 1px solid rgba(220, 53, 69, 0.3);
	border-radius: 4px;
}
.success {
	color: #28a745;
	margin-top: 0.5rem;
	padding: 0.5rem;
	background: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.3);
	border-radius: 4px;
}
img {
	max-width: 100%;
	height: auto;
}
@media (max-width: 768px) {
	.container {
		width: 95%;
		padding: 0 0.5rem;
	}
	.main-layout {
		flex-direction: column;
		gap: 1rem;
	}
	
	.assist-tools-section {
		order: -1;
		height: auto;
		max-height: none;
		position: relative;
		flex: none;
	}
	
	.assist-tools-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
		padding: 0.75rem;
	}
	
	.assist-tools-header {
		padding: 0.75rem;
	}
	
	.assist-tools-header h4 {
		font-size: 0.8rem;
	}
	
	.businesses-section .businesses-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		gap: 0.5rem;
	}
	
	.search-section {
		order: -1;
	}
	header .container {
		flex-direction: column;
		gap: 1rem;
	}
	.header-left {
		justify-content: center;
	}
	nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.25rem;
	}
	nav button {
		font-size: 12px;
		padding: 6px 10px;
	}
	main {
		padding: 1rem 0.5rem;
	}
	.business {
		padding: 1.2rem;
		margin-bottom: 1rem;
	}
	.business-name {
		font-size: 1.2rem;
	}
	.business-actions {
		flex-direction: column;
	}
	.business-actions button {
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.business-detail {
		padding: 1rem;
		margin: 1rem 0;
	}
	.business-detail h2 {
		font-size: 1.4rem;
	}
	.feed {
		max-height: 400px;
	}
	input {
		font-size: 16px;
		padding: 10px 12px;
	}
	textarea {
		font-size: 16px;
		padding: 10px 12px;
	}
	button {
		font-size: 16px;
		padding: 10px 12px;
	}
}
@media (max-width: 480px) {
	header h1 {
		font-size: 1.2rem;
	}
	.logo {
		max-height: 30px;
	}
	.business {
		padding: 1rem;
	}
	.business-detail {
		padding: 0.75rem;
	}
	.contact-info {
		padding: 0.75rem;
	}
	.owner-badge {
		font-size: 0.7rem;
		padding: 0.2rem 0.4rem;
	}
}
button:focus,input:focus,textarea:focus,select:focus,a:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}
@media (prefers-contrast: high) {
	.post {
		border: 2px solid #000;
	}
	.business {
		border: 2px solid #000;
	}
	.profile-card {
		border: 2px solid #000;
	}
	.business-detail {
		border: 2px solid #000;
	}
	button {
		border: 2px solid #000;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
#post-form {
	background: #ffffff;
	border: 1px solid #e4e6ea;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 1rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#post-text {
	display: block;
	width: 100%;
	border: 1px solid #e4e6ea;
	border-radius: 24px;
	padding: 12px 16px;
	font-size: 16px;
	font-family: inherit;
	margin-bottom: 12px;
	background: #f0f2f5;
	color: #1c1e21;
	min-height: 40px;
	resize: none;
	transition: all 0.2s ease;
	outline: none;
	overflow: hidden;
}
#post-text:focus {
	background: #ffffff;
	border-color: #1877f2;
	box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}
#post-text::placeholder {
	color: #65676b;
	font-weight: 400;
}
#post-text:hover {
	background: #e4e6ea;
}
#post-text:focus:hover {
	background: #ffffff;
}
#post-form button {
	background: #1877f2;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-left: auto;
	display: block;
	width: auto;
	margin-bottom: 0;
	min-width: 80px;
}
#post-form button:hover {
	background: #166fe5;
	color: #ffffff;
}
#post-form button:disabled {
	background: #e4e6ea;
	color: #bcc0c4;
	cursor:not-allowed;
}
.post-actions {
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	border: none;
}
.heart-btn {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: none;
	border: none;
	color: #65676b;
	cursor: pointer;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s ease;
	width: auto;
	margin-bottom: 0;
}
.heart-btn:hover {
	background: rgba(220, 53, 69, 0.08);
	color: #dc3545;
}
.heart-btn.hearted {
	color: #dc3545;
	background: rgba(220, 53, 69, 0.05);
}
.heart-btn.hearted:hover {
	background: rgba(220, 53, 69, 0.12);
	color: #dc3545;
}
.heart-icon {
	font-size: 1.1rem;
	color: #bcc0c4;
	transition: transform 0.2s ease, color 0.2s ease;
}
.heart-btn:hover .heart-icon {
	transform: scale(1.05);
	color: #dc3545;
}
.heart-btn.hearted .heart-icon {
	color: #dc3545;
}
.heart-count {
	font-weight: 600;
	min-width: 16px;
}

.heart-text {
	font-size: 0.8rem;
	margin-left: 0.25rem;
}

.follow-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	width:auto;
}

.follow-btn:hover {
	background: #0056b3;
	transform: translateY(-1px);
}

.follow-btn.following {
	background: #28a745;
	width:auto;
}

.follow-btn.following:hover {
	background: #218838;
}

.follow-btn .material-symbols-outlined {
	font-size: 16px;
}

.follow-text {
	font-size: 0.8rem;
}

/* Business Profile Followers Section */
.followers-section {
	margin-top: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.followers-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	display: block;
	margin-bottom: 0.75rem;
}

.followers-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.follower-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 600;
	border: 2px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.follower-avatar:hover {
	transform: scale(1.1);
}

.more-followers {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	margin-left: 0.5rem;
}

.no-followers {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

.business-action-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.follow-business-btn {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	background: #20b2aa;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 0.5rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	width: fit-content;
}

.follow-business-btn:hover {
	background: #1a9a93;
	transform: translateY(-1px);
}

.follow-business-btn.following {
	background: #15817e;
	color: #d4f8f5;
}

.follow-business-btn.following:hover {
	background: #0f5f5c;
}


.love-sections {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.love-sections .section {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.love-sections .section h3 {
	margin-top: 0;
	color: #dc3545;
	border-bottom: 2px solid #dc3545;
}
@media (max-width: 768px) {
	.love-sections {
		gap: 1rem;
	}
	.love-sections .section {
		padding: 1rem;
	}
}
.comment-section {
	margin-top: 1rem;
	border-top: 1px solid #f0f0f0;
	padding-top: 1rem;
}
.comment-form {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.comment-form input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 0;
}
.comment-form button {
	width: auto;
	padding: 8px 12px;
	background: #95c7cd;
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.comment-form button .material-symbols-outlined {
	font-size: 16px;
}
.comment-form button:hover {
	background: #7fb8bf;
}
.comments-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.comment {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 0.75rem;
	font-size: 0.9rem;
	position: relative;
}
.comment-header {
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
	font-size: 0.85rem;
}
.comment-content {
	color: #495057;
	line-height: 1.4;
}
.comment-time {
	font-size: 0.75rem;
	color: #6c757d;
	margin-top: 0.25rem;
}
.comment-delete {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: none;
	border: none;
	color: #6c757d;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 50%;
	font-size: 0.8rem;
	width: auto;
	margin-bottom: 0;
	transition: all 0.2s ease;
}
.comment-delete:hover {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}
.comment-delete .material-symbols-outlined {
	font-size: 14px;
}
.auth-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	min-height: calc(100vh - 120px);
	padding: 2rem 1rem;
}
.auth-page {
	min-height: calc(100vh - 120px);
	gap: 4rem;
	align-items: center;
	padding: 2rem 0;
	position: relative;
	width: 70%;
}
.auth-left {
	flex: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 2rem;
}
.auth-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 200;
	width: 400px;
}
.auth-header {
	font-size: 6rem;
	font-weight: 400;
	color: #1a1a1a;
	margin-bottom: 1rem;
	line-height: 0.92;
	margin-bottom: 74px;
	font-family: 'Poppins', sans-serif;
}
.auth-subheader {
	font-size: 1.6rem;
	color: #000000;
	line-height: 1.5;
	font-weight: 600;
	width: 70%;
}
.auth-form {
	background: #ffffff;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
	border: 1px solid #dddfe2;
	width: 396px;
	font-family: Helvetica, Arial, sans-serif;
}
.auth-form h2 {
	margin-bottom: 16px;
	color: #1c1e21;
	border-bottom: none;
	text-align:left;
	font-size: 32px;
	font-weight: bold;
	line-height: 38px;
}
.auth-form input {
	display: block;
	width: 100%;
	border: 1px solid #dddfe2;
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 17px;
	font-family: inherit;
	margin-bottom: 12px;
	background: #ffffff;
	color: #1c1e21;
	box-sizing: border-box;
	line-height: 16px;
}
.auth-form input:focus {
	border-color: #1877f2;
	box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
	outline: none;
}
.auth-form input::placeholder {
	color: #8a8d91;
}
.auth-form button {
	background: #95c7cd;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.2s ease;
	width: 100%;
	margin-bottom: 16px;
	line-height: 24px;
}
.auth-form button:hover {
	background: #166fe5;
	color: #ffffff;
}
.auth-form p {
	text-align: center;
	margin: 0;
	padding-top: 16px;
	border-top: 1px solid #dadde1;
}
.auth-form p a {
	color: #1877f2;
	text-decoration: none;
	font-weight: 600;
	font-size: 17px;
}
.auth-form p a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.auth-page {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	.auth-left {
		padding-right: 0;
	}
	.auth-header {
		font-size: 2rem;
	}
	.auth-subheader {
		font-size: 1rem;
	}
}
body.login-page nav {
	display: none;
}
/* Business list items for businesses page */
.business-list-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.business-list-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.business-list-item .business-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.business-list-item .business-category {
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.add-business-prompt {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
}

.add-business-prompt:hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

.add-business-prompt .add-icon {
  font-size: 2rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.add-business-prompt .add-text {
  color: #6c757d;
  font-size: 1rem;
  font-weight: 500;
}

.add-business-prompt:hover .add-icon,
.add-business-prompt:hover .add-text {
  color: #007bff;
}

.owner-badge-small {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.business-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
}

.business-logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* User hover modal styles */
.user-hover-modal {
  position: fixed;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  width: 400px;
  max-width: 90vw;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.user-hover-modal.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.user-email {
  font-size: 0.9rem;
  color: #6c757d;
}

.user-businesses h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.business-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.business-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.business-item:hover {
  background: #e9ecef;
  border-color: #007bff;
}

.business-icon {
  font-size: 1.2rem;
}

.business-details {
  flex: 1;
}

.business-item .business-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.business-item .business-category {
  font-size: 0.8rem;
  color: #6c757d;
}

.no-businesses {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  padding: 1rem;
}

/* Notification badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Notifications page */
.notification-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.notification-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.notification-item.unread {
  background: #f8f9ff;
  border-color: #007bff;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-icon.heart {
  background: rgba(220, 53, 69, 0.1);
}

.notification-icon.comment {
  background: rgba(0, 123, 255, 0.1);
}

.notification-content {
  flex: 1;
}

.notification-message {
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.notification-time {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Admin Notification Styles */
.notification-item.admin-notification {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: 2px solid #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.notification-item.admin-notification.unread {
  background: linear-gradient(135deg, #ff1744, #dc3545);
  animation: pulse-admin 2s infinite;
}

@keyframes pulse-admin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.notification-icon.admin {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
}

.notification-item.admin-notification .notification-header {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 0.25rem;
}

.notification-item.admin-notification .notification-message {
  color: white;
  font-weight: 500;
}

.notification-item.admin-notification .notification-time {
  color: rgba(255, 255, 255, 0.8);
}

/* Dismiss Button */
.dismiss-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  transition: all 0.2s;
}

.dismiss-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

.notification-item {
  position: relative;
}

.admin-notification .dismiss-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.admin-notification .dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Profile Selector Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content h3 {
  margin: 0 0 1.5rem 0;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 1rem;
}

.profile-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.profile-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-option:hover {
  background: #e9ecef;
  border-color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.profile-option.active {
  background: rgba(0, 123, 255, 0.1);
  border-color: #007bff;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.profile-option:hover .profile-avatar {
  transform: scale(1.05);
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.profile-type {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.modal-content button {
  width: 30%;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}

.modal-content button:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.modal-content button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

/* Ticket CSS Variables */
:root {
  --ticket-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --ticket-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --ticket-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  --ticket-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --ticket-border-radius: 20px;
  --ticket-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --ticket-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
  --ticket-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Business Post Hero Background */
.business-post-hero {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  
  /* Create angled mask */
  clip-path: polygon(30% 0%, 100% 0%, 100% 80%, 60% 100%);
  
  /* Fade to white gradient overlay */
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.business-post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  z-index: -1;
}

.post.business-post {
  position: relative;
  overflow: hidden;
}

.post.business-post .post-main-container {
  position: relative;
  z-index: 2;
}

/* Suggestion Posts */
.suggestion-post {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #007bff50;
  border-radius: 12px;
  margin: 20px 0;
  overflow: hidden;
  position: relative;
}

.suggestion-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #6610f2, #007bff);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.suggestion-container {
  padding: 20px;
}

.suggestion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #5db7d3;
}

.suggestion-header .material-symbols-outlined {
  font-size: 24px;
}

.suggestion-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.suggestion-content p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.logo-upload-section {display:none;}

.suggestion-btn {
  background: linear-gradient(135deg, #aceef9 0%, #aec3c9 100%);
  border:2px solid #ffffff50;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Facebook Share Button */
.facebook-share-btn {
  background: #1877f2 !important;
  color: white !important;
  border: 1px solid #1877f2 !important;
}

.facebook-share-btn:hover {
  background: #166fe5 !important;
  border-color: #166fe5 !important;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3) !important;
}

.facebook-icon {
  font-style: normal;
  margin-right: 8px;
  font-size: 1rem;
}

/* Loading Screen - UPDATED WITH FORCE HIDE */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: none !important; /* Remove transition that might interfere */
}

.loading-screen.hide,
.loading-screen.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -9999 !important;
}

.loading-container {
  text-align: center;
  color: #333;
}

.loading-logo {
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.loading-container p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #666;
}

/* Mobile responsive for business post hero */
@media (max-width: 768px) {
  .business-post-hero {
    width: 50%;
    height: 80px;
  }
  
  .loading-logo {
    width: 80px;
    height: 80px;
  }
}

/* Mobile-Only Signup Screen */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  /* Hide main content on mobile */
  main {
    display: none !important;
  }
  
  /* Show mobile signup screen */
  .mobile-only {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
 background: linear-gradient(264deg, rgba(174, 221, 226, 1) 0%, rgba(227, 238, 240, 1) 60%, rgba(149, 199, 205, 1) 100%);
    z-index: 9999;
    overflow-y: auto;
  }
  
  .mobile-signup-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
  }
  
  .mobile-header {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
  }
  
  .mobile-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-header p {
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
  }
  
  .mobile-signup-form {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    padding: 10px;
  }
  
  .mobile-step h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .mobile-step p {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.8rem;
  }
  
  .mobile-signup-form input,
  .mobile-signup-form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  .mobile-signup-form input:focus,
  .mobile-signup-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
  
  .mobile-primary-btn {
    width: 100%;
    padding: 15px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .mobile-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  }
  
  .mobile-secondary-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  
  .mobile-secondary-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
  }
  
  .mobile-login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
  }
  
  .mobile-login-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
  }
  
  .mobile-login-link a:hover {
    text-decoration: underline;
  }
}

/* Responsive modal */
/* Enhanced Mobile Responsive Design */
@media (max-width: 480px) {
	.container {
		width: 100%;
		padding: 0 10px;
	}
	
	.header {
		flex-direction: column;
		gap: 0.75rem;
		padding: 0.75rem 0;
	}
	
	.header h1 {
		font-size: 1.5rem;
		margin: 0;
	}
	
	.header-search {
		width: 100%;
		max-width: none;
		margin: 0;
	}
	
	.header-search input {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: 12px 16px;
	}
	
	.header-buttons {
		justify-content: center;
		gap: 0.5rem;
		flex-wrap: wrap;
	}
	
	.header-buttons .btn {
		flex: 1;
		min-width: 100px;
		padding: 10px 16px;
		font-size: 14px;
		min-height: 44px;
	}
	
	.admin-panel {
		margin: 0 -10px 1rem;
		border-radius: 0;
		padding: 1rem;
	}
	
	.profile-card {
		padding: 1rem;
		margin: 0 -10px 1rem;
		border-radius: 0;
	}
	
	.profile-hero {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.hero-business-logo, .business-logo-placeholder {
		width: 80px;
		height: 80px;
		font-size: 32px;
	}
	
	.profile-info h2 {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
	}
	
	.profile-info p {
		font-size: 0.9rem;
	}
	
	.business-stats {
		flex-direction: row;
		justify-content: space-around;
		gap: 1rem;
		margin-top: 1rem;
	}
	
	.stat-item {
		text-align: center;
		min-width: 60px;
	}
	
	.stat-item .stat-number {
		font-size: 1.2rem;
	}
	
	.stat-item .stat-label {
		font-size: 0.8rem;
	}
	
	.add-business-prompt-section {
		padding: 1rem;
		margin: 0 -10px 1rem;
		border-radius: 0;
	}
	
	.businesses-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0;
	}
	
	.business-card {
		padding: 1rem;
		margin: 0 -10px;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.business-card-header {
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}
	
	.business-card-logo, .business-card .business-logo-placeholder {
		width: 50px;
		height: 50px;
		font-size: 20px;
		flex-shrink: 0;
	}
	
	.business-card-info {
		text-align: left;
		flex: 1;
		min-width: 0;
	}
	
	.business-card-info h3 {
		font-size: 1rem;
		margin-bottom: 0.25rem;
	}
	
	.business-card-info p {
		font-size: 0.85rem;
		margin-bottom: 0.5rem;
	}
	
	.business-category {
		font-size: 0.75rem;
		padding: 0.25rem 0.5rem;
	}
	
	.business-actions {
		gap: 0.5rem;
		margin-top: 1rem;
	}
	
	.business-actions .btn {
		flex: 1;
		padding: 0.5rem 0.75rem;
		font-size: 0.85rem;
		min-height: 44px;
	}
	
	.posts-feed {
		padding: 0;
	}
	
	.post-form {
		padding: 1rem;
		margin: 0 -10px 1rem;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.post-form textarea {
		font-size: 16px; /* Prevents zoom on iOS */
		min-height: 80px;
	}
	
	.post-form-bottom {
		flex-direction: column;
		gap: 0.75rem;
		align-items: stretch;
	}
	
	.post-form-bottom #post-business {
		font-size: 16px; /* Prevents zoom on iOS */
	}
	
	.post-form-bottom .post-actions button {
		width: 100%;
		justify-content: center;
		padding: 12px 1.5rem;
		font-size: 16px;
		min-height: 44px;
	}
	
	.post {
		padding: 1rem;
		margin: 0 -10px 1rem;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.post-header {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	
	.post-user-info {
		flex: 1;
		min-width: 0;
	}
	
	.post-user-info h4 {
		font-size: 0.9rem;
	}
	
	.post-meta {
		font-size: 0.8rem;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.25rem;
	}
	
	.delete-post-btn {
		font-size: 0.8rem;
		padding: 0.25rem 0.5rem;
		min-height: 32px;
	}
	
	.post-content {
		margin: 1rem 0;
		font-size: 0.95rem;
		line-height: 1.5;
	}
	
	.post-actions {
		gap: 0.5rem;
	}
	
	.post-actions button {
		flex: 1;
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
		min-height: 44px;
	}
	
	.post-images {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.post-image {
		width: 100%;
		border-radius: 8px;
	}
	
	.notifications-list {
		padding: 0;
	}
	
	.notification {
		padding: 1rem;
		margin: 0 -10px;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.notification-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.notification-meta {
		font-size: 0.8rem;
	}
	
	.business-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.form-group input,
	.form-group textarea {
		font-size: 16px; /* Prevents zoom on iOS */
	}
	
	.admin-message-options {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}
	
	.admin-message-options select {
		font-size: 16px; /* Prevents zoom on iOS */
	}
	
	.admin-message-options button {
		width: 100%;
		padding: 0.75rem;
		min-height: 44px;
	}
	
	.category-filter {
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		margin: 0 -10px;
		padding: 0 10px;
	}
	
	.category-filter::-webkit-scrollbar {
		display: none;
	}
	
	.category-filter-buttons {
		gap: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	.category-btn {
		white-space: nowrap;
		min-width: fit-content;
		font-size: 0.85rem;
		padding: 0.5rem 1rem;
		min-height: 44px;
	}
	
	.search-results {
		margin: 0 -10px;
		border-radius: 0;
		max-height: 300px;
	}
	
	.search-result-item {
		padding: 0.75rem 1rem;
	}
	
	.search-result-item h4 {
		font-size: 0.9rem;
	}
	
	.search-result-item p {
		font-size: 0.8rem;
	}
	
	.modal-content {
		padding: 1rem;
		margin: 0.5rem;
		max-width: none;
		width: calc(100% - 1rem);
		border-radius: 12px;
	}
	
	.modal-content h3 {
		font-size: 1.2rem;
	}
	
	.profile-option {
		padding: 0.75rem;
		min-height: 60px;
	}
	
	.profile-avatar {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	
	.profile-name {
		font-size: 0.95rem;
	}
	
	.profile-type {
		font-size: 0.8rem;
	}
}

@media (max-width: 768px) and (min-width: 481px) {
	.container {
		width: 95%;
		padding: 0 15px;
	}
	
	.header {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 0;
	}
	
	.header h1 {
		font-size: 1.8rem;
	}
	
	.header-search {
		width: 100%;
		max-width: none;
	}
	
	.header-buttons {
		justify-content: center;
		gap: 0.5rem;
	}
	
	.header-buttons .btn {
		flex: 1;
		max-width: 120px;
		min-height: 44px;
	}
	
	.profile-card {
		padding: 1.5rem;
	}
	
	.profile-hero {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.profile-info h2 {
		font-size: 1.6rem;
	}
	
	.business-stats {
		flex-direction: row;
		justify-content: space-around;
		gap: 1rem;
	}
	
	.stat-item {
		text-align: center;
	}
	
	.add-business-prompt-section {
		padding: 1.5rem;
	}
	
	.businesses-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.business-card {
		padding: 1.5rem;
	}
	
	.business-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.business-card-logo {
		align-self: center;
	}
	
	.business-card-info {
		text-align: center;
	}
	
	.business-actions {
		gap: 0.5rem;
	}
	
	.business-actions .btn {
		flex: 1;
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
		min-height: 44px;
	}
	
	.posts-feed {
		padding: 1rem;
	}
	
	.post-form {
		padding: 1.5rem;
	}
	
	.post-form-bottom {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}
	
	.post-form-bottom .post-actions {
		align-self: stretch;
	}
	
	.post-form-bottom .post-actions button {
		width: 100%;
		justify-content: center;
		min-height: 44px;
	}
	
	.post {
		padding: 1.5rem;
	}
	
	.post-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
	
	.post-user-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.post-actions {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.post-actions button {
		width: 100%;
		justify-content: center;
		min-height: 44px;
	}
	
	.post-images {
		flex-direction: column;
		gap: 1rem;
	}
	
	.post-image {
		width: 100%;
	}
	
	.notifications-list {
		padding: 1rem;
	}
	
	.notification {
		padding: 1rem;
	}
	
	.notification-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.business-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.admin-message-options {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}
	
	.admin-message-options button {
		width: 100%;
		padding: 0.75rem;
		min-height: 44px;
	}
	
	.category-filter {
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	
	.category-filter::-webkit-scrollbar {
		display: none;
	}
	
	.category-filter-buttons {
		gap: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	.category-btn {
		white-space: nowrap;
		min-width: fit-content;
		min-height: 44px;
	}
	
	.modal-content {
		padding: 1.5rem;
		margin: 1rem;
		max-width: none;
		width: calc(100% - 2rem);
	}
	
	.modal-content h3 {
		font-size: 1.3rem;
	}
	
	.profile-option {
		padding: 0.75rem;
		min-height: 60px;
	}
	
	.profile-avatar {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	
	.profile-name {
		font-size: 1rem;
	}
	
	.profile-type {
		font-size: 0.85rem;
	}
	
	/* Business details mobile layout */
	.business-details-layout {
		flex-direction: column;
		gap: 1rem;
	}
	
	.business-content-left,
	.business-content-right {
		max-width: 100%;
		flex: none;
	}
	
	.business-content-right {
		position: static;
		top: auto;
		margin-top: 0;
	}
	
	.business-posts-container {
		max-height: 60vh;
	}
}

/* Admin badge styling */
.admin-badge {
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 600;
  background-color: #ffe0e0;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Preserve line breaks in bio text */
.profile-bio, [class*="bio"] {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Followers in content section */
.followers-content-section {
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0;
}

.followers-content-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.followers-content-section .followers-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.followers-content-section .follower-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #e9ecef;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.followers-content-section .follower-avatar:hover {
  transform: scale(1.1);
}

.followers-content-section .more-followers {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
  margin-left: 0.5rem;
}

.followers-content-section .no-followers {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

/* Business details layout */
.business-details-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.business-content-left {
  flex: 1;
  max-width: 50%;
}

.business-content-right {
  flex: 1;
  max-width: 50%;
  position: relative;
  margin-top: -230px; /* Pull it up to overlap hero */
  z-index: 10; /* Put on top of hero section */
}

.business-posts-feed {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.business-posts-feed h3 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.business-posts-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.business-post-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  background: #fafafa;
  transition: all 0.2s ease;
}

.business-post-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.business-post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.business-post-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.business-post-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-post-logo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.business-post-info {
  flex: 1;
}

.business-post-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.business-post-time {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.2rem;
}

.business-post-content {
  margin-bottom: 0.75rem;
  color: #444;
  line-height: 1.5;
}

.business-post-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.business-post-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.business-post-image:hover {
  transform: scale(1.02);
}

.business-post-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e9ecef;
}

.business-heart-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.business-heart-btn:hover {
  color: #e91e63;
}

.business-heart-btn.hearted {
  color: #e91e63;
}

.business-heart-btn .heart-text {
  font-size: 0.8rem;
  margin-left: 0.25rem;
}

.no-business-posts {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 2rem;
}

/* User avatar styling for posts */
.post-user-avatar {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  flex-shrink: 0;
}

.post-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.post-user-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* Upcoming Events Section */
.upcoming-event {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e8ed;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upcoming-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #1877f2;
}

.upcoming-event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.upcoming-event-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1e21;
  margin: 0;
}

.upcoming-event-privacy {
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.upcoming-event-privacy.public {
  background: #d4edda;
  color: #155724;
}

.upcoming-event-privacy.private {
  background: #f8d7da;
  color: #721c24;
}

.upcoming-event-date {
  color: #1877f2;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upcoming-event-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: #65676b;
  font-size: 0.9rem;
}

.upcoming-event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.upcoming-event-description {
  color: #1c1e21;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.upcoming-event-attendees {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65676b;
  font-size: 0.8rem;
}

.upcoming-event-host {
  font-weight: 500;
}

.show-all-events {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #e1e8ed;
  margin-top: 1rem;
}

.show-all-link {
  color: #1877f2;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.show-all-link:hover {
  background: #f0f8ff;
  text-decoration: none;
}

/* User Profile Followers Section */
.profile-stats {
  display: none;
  gap: 30px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e1e5e9;
  border-bottom: 1px solid #e1e5e9;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1877f2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.followers-section {
	display:none;
  margin-top: 30px;
}

.followers-section h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.followers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.follower-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.follower-card:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.follower-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.follower-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.follower-info {
  flex: 1;
}

.follower-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.follower-username {
  font-size: 0.8rem;
  color: #666;
}

.follow-user-btn {
  background: #1877f2;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.follow-user-btn:hover {
  background: #166fe5;
  transform: translateY(-1px);
}

.follow-user-btn.following {
  background: #42b883;
}

.follow-user-btn.following:hover {
  background: #369870;
}
