/* POP360 Account Widget Styles */

.pop360-account-dashboard {
	max-width: 1100px;
	margin: 0 auto;
}
.pop360-account-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--pop360-shadow-card);
	margin-bottom: 24px;
}
.pop360-user-avatar img {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.pop360-user-info {
	flex: 1;
}
.pop360-user-info h2 {
	font-family: var(--pop360-font);
	font-weight: 800;
	font-size: 24px;
	margin: 0 0 8px;
	color: #111;
}
.pop360-account-messages {
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-family: var(--pop360-font);
}
.pop360-account-messages.error {
	background: #fee2e2;
	color: var(--pop360-error);
	border: 1px solid #fca5a5;
}
.pop360-account-messages.success {
	background: #dcfce7;
	color: #16a34a;
	border: 1px solid #86efac;
}

/* Layout met sidebar */
.pop360-account-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

/* Sidebar navigatie */
.pop360-account-sidebar {
	width: 260px;
	flex-shrink: 0;
	background: #fff;
	border-radius: 12px;
	padding: 8px;
	box-shadow: var(--pop360-shadow-card);
	position: sticky;
	top: 100px;
}
.pop360-sidebar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 8px;
	text-decoration: none;
	color: #4b5563;
	font-family: var(--pop360-font);
	font-weight: 500;
	font-size: 15px;
	transition: all 0.15s ease;
	border-left: 3px solid transparent;
	margin-bottom: 4px;
}
.pop360-sidebar-item:hover {
	background: #f3f4f6;
	color: #111;
}
.pop360-sidebar-item.active {
	background: #eef2ff;
	color: var(--pop360-primary);
	border-left-color: var(--pop360-primary);
	font-weight: 600;
}
.pop360-sidebar-icon {
	font-size: 18px;
	width: 24px;
	text-align: center;
}
.pop360-sidebar-text {
	flex: 1;
}
.pop360-sidebar-badge {
	background: var(--pop360-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 12px;
	min-width: 20px;
	text-align: center;
}
.pop360-sidebar-badge.pop360-badge-warning {
	background: #f59e0b;
}

/* Tab content */
.pop360-account-content {
	flex: 1;
	min-width: 0;
}
.pop360-tab-panel {
	display: none;
}
.pop360-tab-panel.active {
	display: block;
}

/* Cards */
.pop360-account-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--pop360-shadow-card);
	padding: 28px;
	margin-bottom: 24px;
}
.pop360-card-title {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 8px;
	color: #111;
}
.pop360-card-description {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #6b7280;
	margin: 0 0 24px;
}

/* Profielfoto sectie */
.pop360-profile-photo-section {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 20px;
	background: #f9fafb;
	border-radius: 12px;
	margin-bottom: 28px;
}
.pop360-profile-photo-preview {
	position: relative;
}
.pop360-profile-photo-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #e5e7eb;
}
.pop360-profile-photo-info h4 {
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 16px;
	margin: 0 0 4px;
	color: #111;
}
.pop360-profile-photo-info p {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 12px;
}
.pop360-profile-photo-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.pop360-profile-photo-loading {
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Form styling */
.pop360-form-row {
	display: flex;
	gap: 16px;
}
.pop360-form-group {
	margin-bottom: 20px;
}
.pop360-form-group.pop360-half { flex: 1; }
.pop360-form-group.pop360-three-quarter { flex: 3; }
.pop360-form-group.pop360-quarter { flex: 1; min-width: 80px; }
.pop360-form-group.pop360-third { flex: 1; }
.pop360-form-group.pop360-two-thirds { flex: 2; }
.pop360-form-group label {
	display: block;
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 8px;
	color: #374151;
}
.pop360-form-group input,
.pop360-form-group select,
.pop360-form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	font-family: var(--pop360-font);
	transition: border-color 0.2s;
	background: #fff;
}
.pop360-form-group input:focus,
.pop360-form-group select:focus,
.pop360-form-group textarea:focus {
	border-color: var(--pop360-primary);
	outline: none;
}
.pop360-form-group select {
	cursor: pointer;
	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 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 20px;
	padding-right: 40px;
}
.pop360-form-group textarea {
	resize: vertical;
	min-height: 100px;
}
.pop360-address-section > label {
	margin-bottom: 12px;
}
.pop360-address-row {
	margin-bottom: 8px !important;
}
.pop360-address-row .pop360-form-group {
	margin-bottom: 0;
}

/* Buttons */
.pop360-btn {
	padding: 12px 24px;
	border-radius: 10px;
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	border: 2px solid transparent;
	text-decoration: none;
	display: inline-block;
}
.pop360-btn-primary {
	background: var(--pop360-primary);
	color: #fff;
	border-color: var(--pop360-primary);
}
.pop360-btn-primary:hover {
	background: var(--pop360-primary-dark);
}
.pop360-btn-outline {
	background: transparent;
	color: #374151;
	border-color: #e5e7eb;
}
.pop360-btn-outline:hover {
	background: #f3f4f6;
}
.pop360-btn-danger {
	background: var(--pop360-error);
	color: #fff;
	border-color: var(--pop360-error);
}
.pop360-btn-danger:hover {
	background: #b91c1c;
}
.pop360-btn-danger-outline {
	background: transparent;
	color: var(--pop360-error);
	border-color: #fca5a5;
}
.pop360-btn-danger-outline:hover {
	background: #fee2e2;
}
.pop360-btn-sm {
	padding: 8px 16px;
	font-size: 13px;
}
.pop360-btn-link {
	background: transparent;
	color: #6b7280;
	border: none;
	padding: 8px 12px;
}
.pop360-btn-link:hover {
	color: var(--pop360-error);
}

/* Events lijst */
.pop360-events-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.pop360-event-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px;
	background: #f9fafb;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.2s;
}
.pop360-event-item:hover {
	border-color: #e5e7eb;
	background: #fff;
}
.pop360-event-item.pop360-event-past {
	opacity: 0.7;
}
.pop360-event-image {
	width: 100px;
	height: 70px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}
.pop360-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pop360-event-badge {
	position: absolute;
	top: 4px;
	left: 4px;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	font-family: var(--pop360-font);
	text-transform: uppercase;
}
.pop360-badge-past {
	background: #6b7280;
	color: #fff;
}
.pop360-event-details {
	flex: 1;
	min-width: 0;
}
.pop360-event-title {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 8px;
	color: #111;
}
.pop360-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 6px;
}
.pop360-event-date,
.pop360-event-location {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #4b5563;
	display: flex;
	align-items: center;
	gap: 4px;
}
.pop360-meta-icon {
	font-size: 14px;
}
.pop360-event-time {
	color: #6b7280;
	margin-left: 4px;
}
.pop360-event-time::before {
	content: "•";
	margin-right: 4px;
}
.pop360-registration-date {
	font-family: var(--pop360-font);
	font-size: 12px;
	color: #9ca3af;
}
.pop360-event-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

/* Empty state */
.pop360-empty-state {
	text-align: center;
	padding: 48px 24px;
}
.pop360-empty-icon {
	font-size: 56px;
	margin-bottom: 16px;
}
.pop360-empty-state h4 {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 8px;
	color: #111;
}
.pop360-empty-state p {
	font-family: var(--pop360-font);
	font-size: 15px;
	color: #6b7280;
	margin: 0 0 20px;
}

/* Membership */
.pop360-membership-status {
	text-align: center;
}
.pop360-status-display {
	margin-bottom: 20px;
}
.pop360-membership-info {
	padding: 24px;
	background: #f8fafc;
	border-radius: 12px;
	text-align: center;
}
.pop360-membership-info p {
	font-family: var(--pop360-font);
	font-size: 15px;
	color: #4b5563;
	margin: 0 0 16px;
}
.pop360-membership-info.pop360-pending {
	background: #fef3c7;
	border-left: 4px solid #f59e0b;
}
.pop360-membership-info.pop360-premium {
	background: #dcfce7;
	border-left: 4px solid #16a34a;
}
.pop360-membership-icon {
	font-size: 40px;
	margin-bottom: 12px;
}
.pop360-membership-info h4 {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 8px;
}
.pop360-membership-detail {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
	font-family: var(--pop360-font);
}

/* Offplay */
.pop360-offplay-card {
	border: 2px solid #e0e7ff;
	background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
}
.pop360-offplay-credentials {
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}
.pop360-offplay-info-row {
	display: flex;
	gap: 24px;
}
.pop360-offplay-field {
	flex: 1;
}
.pop360-offplay-field label {
	display: block;
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 13px;
	color: #4b5563;
	margin-bottom: 8px;
}
.pop360-offplay-value {
	display: flex;
	align-items: center;
	gap: 8px;
}
.pop360-offplay-value code {
	flex: 1;
	padding: 12px 16px;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
	font-size: 14px;
	color: #111;
}
.pop360-btn-icon {
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.15s ease;
}
.pop360-btn-icon:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
}
.pop360-offplay-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}
.pop360-offplay-connected-badge {
	display: inline-block;
	padding: 4px 12px;
	background: #d1fae5;
	color: #065f46;
	border-radius: 12px;
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 12px;
}
.pop360-offplay-date {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #6b7280;
	font-size: 14px;
}
.detail-label { color: #6b7280; }
.detail-value { font-weight: 600; color: #374151; }

/* Danger card */
.pop360-danger-card {
	border: 2px solid #fee2e2;
}
.pop360-danger-title {
	color: var(--pop360-error);
}
.pop360-danger-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #fef2f2;
	border-radius: 10px;
	border: 1px solid #fecaca;
}
.pop360-danger-info h4 {
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 15px;
	margin: 0 0 4px;
	color: #991b1b;
}
.pop360-danger-info p {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #b91c1c;
	margin: 0;
}

/* Modal */
.pop360-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pop360-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}
.pop360-modal-content {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	max-width: 400px;
	width: 90%;
	text-align: center;
}
.pop360-modal-content h4 {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 12px;
	color: var(--pop360-error);
}
.pop360-modal-content p {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 20px;
}
.pop360-modal-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
}

/* Login required */
.pop360-login-required {
	text-align: center;
	padding: 60px 40px;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--pop360-shadow-card);
}
.pop360-login-required .icon {
	font-size: 64px;
	margin-bottom: 20px;
}
.pop360-login-required h3 {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 12px;
}
.pop360-login-required p {
	font-family: var(--pop360-font);
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 24px;
}

/* Invoice/Betalingen styles */
.pop360-invoice-stats {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}
.pop360-stat-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f0fdf4;
	padding: 16px 20px;
	border-radius: 12px;
	border: 2px solid #bbf7d0;
}
.pop360-stat-card.pop360-stat-warning {
	background: #fef3c7;
	border-color: #fcd34d;
}
.pop360-stat-card.pop360-stat-highlight {
	background: #eff6ff;
	border-color: #93c5fd;
}
.pop360-stat-icon {
	font-size: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.7);
	border-radius: 10px;
}
.pop360-stat-info {
	display: flex;
	flex-direction: column;
}
.pop360-stat-value {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 20px;
	color: #111;
}
.pop360-stat-label {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #6b7280;
}
.pop360-invoices-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pop360-invoice-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: #f9fafb;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.2s;
}
.pop360-invoice-item:hover {
	border-color: #e5e7eb;
	background: #fff;
}
.pop360-invoice-item.pop360-invoice-paid {
	border-left: 4px solid #10b981;
}
.pop360-invoice-item.pop360-invoice-unpaid {
	border-left: 4px solid #f59e0b;
}
.pop360-invoice-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: #fff;
	border-radius: 10px;
	border: 2px solid #e5e7eb;
	flex-shrink: 0;
}
.pop360-invoice-paid .pop360-invoice-icon {
	background: #d1fae5;
	border-color: #10b981;
}
.pop360-invoice-details {
	flex: 1;
	min-width: 0;
}
.pop360-invoice-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 6px;
}
.pop360-invoice-number {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 16px;
	color: #111;
}
.pop360-invoice-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-family: var(--pop360-font);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}
.pop360-invoice-status.status-paid {
	background: #d1fae5;
	color: #065f46;
}
.pop360-invoice-status.status-unpaid {
	background: #fef3c7;
	color: #92400e;
}
.pop360-invoice-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 4px;
}
.pop360-invoice-date,
.pop360-invoice-amount {
	font-family: var(--pop360-font);
	font-size: 13px;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 4px;
}
.pop360-invoice-amount {
	font-weight: 600;
	color: #374151;
}
.pop360-invoice-description {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #4b5563;
	margin: 4px 0 0 0;
}
.pop360-invoice-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

/* Messaging styles */
.pop360-messaging-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}
.pop360-messaging-title {
	flex: 1;
}
.pop360-messages-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pop360-message-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	background: #f9fafb;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.2s;
}
.pop360-message-item:hover {
	border-color: #e5e7eb;
	background: #fff;
}
.pop360-message-item.pop360-message-unread {
	background: #eef2ff;
	border-color: #c7d2fe;
}
/* Avatar styling */
.pop360-message-avatar {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	position: relative;
}
.pop360-message-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pop360-message-avatar img.pop360-avatar-logo {
	border-radius: 10px;
	background: #fff;
	padding: 4px;
}
.pop360-avatar-placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--pop360-primary) 0%, #5b5bf0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
}
.pop360-message-avatar .pop360-unread-dot {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 12px;
	height: 12px;
	background: var(--pop360-primary);
	border-radius: 50%;
	border: 2px solid #fff;
}
.pop360-message-content {
	flex: 1;
	min-width: 0;
}
/* Meta info (afzender + datum) */
.pop360-message-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.pop360-message-sender {
	font-family: var(--pop360-font);
	font-weight: 600;
	font-size: 13px;
	color: #374151;
}
.pop360-message-unread .pop360-message-sender {
	color: var(--pop360-primary);
}
.pop360-message-meta .pop360-message-date {
	font-family: var(--pop360-font);
	font-size: 12px;
	color: #9ca3af;
}
.pop360-message-meta .pop360-message-date::before {
	content: '•';
	margin-right: 8px;
	color: #d1d5db;
}
.pop360-message-title {
	font-family: var(--pop360-font);
	font-weight: 700;
	font-size: 15px;
	margin: 0 0 6px 0;
	color: #111;
	line-height: 1.4;
}
.pop360-message-unread .pop360-message-title {
	color: #1e1e8a;
}
.pop360-message-date {
	font-family: var(--pop360-font);
	font-size: 12px;
	color: #9ca3af;
	white-space: nowrap;
}
.pop360-message-body {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
}
.pop360-message-body p {
	margin: 0 0 8px;
}
.pop360-message-body p:last-child {
	margin-bottom: 0;
}
.pop360-message-priority {
	margin-top: 8px;
}
.pop360-priority-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-family: var(--pop360-font);
	font-size: 11px;
	font-weight: 600;
}
.pop360-priority-urgent {
	background: #fee2e2;
	color: var(--pop360-error);
}
.pop360-priority-high {
	background: #fef3c7;
	color: #d97706;
}
.pop360-message-actions {
	flex-shrink: 0;
}
.pop360-mark-read-btn {
	width: 32px;
	height: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #9ca3af;
	background: transparent;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.15s;
}
.pop360-mark-read-btn:hover {
	background: #e5e7eb;
	color: var(--pop360-primary);
}

/* Message reactions (emoticon) and replies */
.pop360-message-respond {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}
.pop360-message-reactions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.pop360-reactions-label {
	font-size: 13px;
	color: #6b7280;
	margin-right: 4px;
}
.pop360-reaction-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.15s, border-color 0.15s;
}
.pop360-reaction-btn:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
}
.pop360-reaction-btn.pop360-reaction-active {
	background: #eef2ff;
	border-color: var(--pop360-primary);
}
.pop360-reaction-count {
	font-size: 12px;
	color: #6b7280;
}
.pop360-reaction-team-badge {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: var(--pop360-primary);
	background: #eef2ff;
	padding: 2px 8px;
	border-radius: 12px;
	margin-left: 8px;
	font-weight: 500;
}
.pop360-reply-reactions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
	font-size: 12px;
}
.pop360-reply-reaction-tag-frontend {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	background: #f3f4f6;
	border-radius: 4px;
	color: #4b5563;
}
.pop360-reply-reaction-tag-frontend .pop360-reply-reaction-author {
	font-weight: 500;
}
.pop360-message-replies {
	margin-top: 12px;
}
.pop360-replies-wrap {
	margin-bottom: 12px;
}
.pop360-replies-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 0;
	background: none;
	border: none;
	font-size: 13px;
	color: var(--pop360-primary);
	cursor: pointer;
	font-weight: 500;
}
.pop360-replies-toggle:hover {
	text-decoration: underline;
}
.pop360-replies-toggle-icon {
	font-size: 10px;
	transition: transform 0.2s;
}
.pop360-replies-collapsed .pop360-replies-list {
	display: none;
}
.pop360-replies-collapsed .pop360-replies-list[hidden] {
	display: none !important;
}
.pop360-replies-expanded .pop360-replies-list[hidden] {
	display: block !important;
}
.pop360-replies-list {
	margin-top: 8px;
	margin-bottom: 12px;
}
.pop360-reply-item {
	padding: 10px 12px;
	background: #f9fafb;
	border-radius: 8px;
	margin-bottom: 8px;
	border-left: 3px solid #e5e7eb;
}
.pop360-replies-children .pop360-reply-item {
	margin-left: 16px;
}
.pop360-reply-meta {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 4px;
}
.pop360-reply-author {
	font-weight: 600;
	color: #374151;
}
.pop360-reply-date {
	margin-left: 8px;
}
.pop360-reply-content {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.5;
}
.pop360-reply-content p {
	margin: 0 0 4px;
}
.pop360-reply-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pop360-reply-input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	resize: vertical;
	min-height: 60px;
}
.pop360-reply-notice {
	font-size: 13px;
	color: #6b7280;
	margin: 0;
}

/* Favorites tab styles */
.pop360-favorites-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.pop360-filter-btn {
	padding: 8px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #fff;
	font-family: var(--pop360-font);
	font-size: 13px;
	font-weight: 500;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.15s;
}
.pop360-filter-btn:hover {
	border-color: var(--pop360-primary);
	color: var(--pop360-primary);
}
.pop360-filter-btn.active {
	background: var(--pop360-primary);
	border-color: var(--pop360-primary);
	color: #fff;
}
.pop360-favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.pop360-favorite-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: all 0.2s;
}
.pop360-favorite-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.pop360-favorite-card.pop360-hidden {
	display: none;
}
.pop360-favorite-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.pop360-favorite-card-image {
	position: relative;
	aspect-ratio: 16/9;
	background: #f3f4f6;
	overflow: hidden;
}
.pop360-favorite-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.pop360-favorite-card:hover .pop360-favorite-card-image img {
	transform: scale(1.05);
}
.pop360-favorite-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 32px;
	color: #d1d5db;
}
.pop360-favorite-type-badge {
	position: absolute;
	bottom: 8px;
	left: 8px;
	padding: 4px 10px;
	background: linear-gradient(90deg, #f85032 0%, #e73827 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: 4px;
}
.pop360-favorite-card-content {
	padding: 16px;
}
.pop360-favorite-card-title {
	font-family: var(--pop360-font);
	font-size: 15px;
	font-weight: 600;
	color: #111;
	margin: 0 0 6px 0;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pop360-favorite-card-date {
	font-family: var(--pop360-font);
	font-size: 12px;
	color: #9ca3af;
}
.pop360-favorite-remove-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	z-index: 10;
}
.pop360-favorite-remove-btn:hover {
	background: #fff;
	transform: scale(1.1);
}
.pop360-favorite-remove-btn .pop360-favorite-icon {
	font-size: 18px;
	color: #f59e0b;
}
.pop360-empty-state {
	text-align: center;
	padding: 60px 20px;
}
.pop360-empty-icon {
	font-size: 48px;
	margin-bottom: 16px;
	opacity: 0.5;
}
.pop360-empty-state h4 {
	font-family: var(--pop360-font);
	font-size: 18px;
	font-weight: 700;
	color: #374151;
	margin: 0 0 8px 0;
}
.pop360-empty-state p {
	font-family: var(--pop360-font);
	font-size: 14px;
	color: #6b7280;
	max-width: 400px;
	margin: 0 auto;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
	.pop360-account-layout {
		flex-direction: column;
	}
	.pop360-account-content {
		width: 100%;
	}
	.pop360-account-sidebar {
		width: 100%;
		position: static;
		flex-direction: column;
		display: flex;
		overflow-x: auto;
		padding: 8px;
		gap: 4px;
		-webkit-overflow-scrolling: touch;
	}
	.pop360-sidebar-item {
		flex: none;
		white-space: nowrap;
		border-left: none;
		border-bottom: 3px solid transparent;
		margin-bottom: 0;
		padding: 12px 14px;
	}
	.pop360-sidebar-item.active {
		border-left-color: transparent;
		border-bottom-color: var(--pop360-primary);
	}
	.pop360-favorites-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

/* Responsive: Mobile */
@media (max-width: 767px) {
	.pop360-account-dashboard {
		margin: 0 8px;
	}
	.pop360-account-header {
		flex-direction: row;
		/* text-align: center; */
		padding: 20px 16px;
	}
	.pop360-account-card {
		padding: 20px 16px;
		border-radius: 12px;
	}
	.pop360-card-title {
		font-size: 18px;
	}
	.pop360-form-row {
		flex-direction: column;
		gap: 0;
	}
	.pop360-profile-photo-section {
		flex-direction: column;
		text-align: center;
		padding: 16px;
	}
	.pop360-event-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px;
	}
	.pop360-event-image {
		width: 100%;
		height: 120px;
	}
	.pop360-event-actions {
		width: 100%;
		justify-content: flex-end;
	}
	.pop360-danger-action {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	.pop360-invoice-stats {
		flex-direction: column;
	}
	.pop360-invoice-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px;
	}
	.pop360-invoice-icon {
		display: none;
	}
	.pop360-invoice-actions {
		width: 100%;
	}
	.pop360-invoice-actions .pop360-btn {
		flex: 1;
		text-align: center;
	}
	.pop360-offplay-info-row {
		flex-direction: column;
		gap: 16px;
	}
	.pop360-offplay-value code {
		font-size: 12px;
		padding: 10px 12px;
		text-align: center;
	}
	.pop360-message-item {
		padding: 14px;
		gap: 10px;
	}
	.pop360-message-avatar,
	.pop360-message-avatar img,
	.pop360-avatar-placeholder {
		width: 36px;
		height: 36px;
	}
	.pop360-favorites-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.pop360-btn {
		padding: 10px 18px;
		font-size: 13px;
	}
	.pop360-modal-content {
		padding: 24px 16px;
		width: 95%;
	}
	.pop360-sidebar-item {
		padding: 10px 12px;
		font-size: 13px;
	}
}
