/* START: BMP Invite Frontend Styles - LIGHT THEME */
html.light-mode .bmp-invite-container {
	background-color: #ffffff;
	color: #1f2937;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

html.light-mode .bmp-invite-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #f3f4f6;
}

html.light-mode .bmp-invite-tab {
	background: none;
	border: none;
	color: #1f2937;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

html.light-mode .bmp-invite-tab:hover {
	color: #4CAF50;
}

html.light-mode .bmp-invite-tab.active {
	color: #4CAF50;
	border-bottom-color: #4CAF50;
}

html.light-mode .bmp-invite-section {
	display: none;
}

html.light-mode .bmp-invite-section.active {
	display: block;
}

html.light-mode .bmp-invite-form {
	background: #f3f4f6;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

html.light-mode .bmp-form-group {
	margin-bottom: 15px;
}

html.light-mode .bmp-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #1f2937;
	font-size: 14px;
	font-weight: 500;
}

html.light-mode .bmp-form-group input,
html.light-mode .bmp-form-group textarea,
html.light-mode .bmp-form-group select {
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	border: 2px solid #e5e7eb;
	color: #1f2937;
	border-radius: 4px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

html.light-mode .bmp-form-group input::placeholder,
html.light-mode .bmp-form-group textarea::placeholder {
	color: #9ca3af;
}

html.light-mode .bmp-form-group input:focus,
html.light-mode .bmp-form-group textarea:focus,
html.light-mode .bmp-form-group select:focus {
	outline: none;
	border-color: #4CAF50;
	box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

html.light-mode .bmp-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

html.light-mode .bmp-button {
	background: linear-gradient(to bottom, #383838 0%, #343434 100%);
	color: #ffffff;
	border-top: 1px solid #555555;
	border-left: 1px solid #555555;
	border-right: 1px solid #282828;
	border-bottom: 1px solid #282828;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
	border-radius: 6px;
	padding: 0 15px;
	height: 32px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	width: 100%;
}

html.light-mode .bmp-button:hover {
	background: linear-gradient(to bottom, #404040 0%, #3a3a3a 100%);
}

html.light-mode .bmp-button:active {
	transform: translateY(1px);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

html.light-mode .bmp-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

html.light-mode #friend-suggestions {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	max-height: 300px;
	overflow-y: auto;
	margin-top: 10px;
}

html.light-mode .bmp-friend-suggestion {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
	border-bottom: 1px solid #e5e7eb;
}

html.light-mode .bmp-friend-suggestion:hover {
	background: #ffffff;
}

html.light-mode .bmp-friend-suggestion img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

html.light-mode .bmp-friend-suggestion span {
	color: #1f2937;
}

html.light-mode .bmp-no-results {
	padding: 15px;
	text-align: center;
	color: #6b7280;
	font-size: 13px;
}

html.light-mode .bmp-invitations-list {
	display: grid;
	gap: 15px;
}

html.light-mode .bmp-invite-item {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	padding: 15px;
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

html.light-mode .bmp-invite-details {
	flex: 1;
}

html.light-mode .bmp-invite-to {
	color: #1f2937;
	font-weight: 500;
	margin-bottom: 5px;
}

html.light-mode .bmp-invite-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	margin-top: 5px;
}

html.light-mode .bmp-invite-status.pending {
	background: #fff3cd;
	color: #856404;
}

html.light-mode .bmp-invite-status.accepted {
	background: #d4edda;
	color: #155724;
}

html.light-mode .bmp-invite-status.expired {
	background: #f8d7da;
	color: #721c24;
}

html.light-mode .bmp-invite-date {
	font-size: 12px;
	color: #6b7280;
	margin-top: 5px;
}

html.light-mode .bmp-invite-actions {
	display: flex;
	gap: 10px;
}

html.light-mode .bmp-cancel-invite {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
}

html.light-mode .bmp-cancel-invite:hover {
	background: #f5c2c7;
}

html.light-mode #invite-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

html.light-mode .bmp-stat-card {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	padding: 15px;
	border-radius: 6px;
	text-align: center;
}

html.light-mode .bmp-stat-label {
	color: #6b7280;
	font-size: 12px;
	margin-bottom: 8px;
}

html.light-mode .bmp-stat-value {
	color: #4CAF50;
	font-size: 28px;
	font-weight: bold;
}
/* END: BMP Invite Frontend Styles - LIGHT THEME */

/* START: BMP Invite Frontend Styles - DARK THEME */
html.dark-mode .bmp-invite-container {
	background-color: #1a1a1a;
	color: #e0e0e0;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

html.dark-mode .bmp-invite-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #333;
}

html.dark-mode .bmp-invite-tab {
	background: none;
	border: none;
	color: #e0e0e0;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

html.dark-mode .bmp-invite-tab:hover {
	color: #4CAF50;
}

html.dark-mode .bmp-invite-tab.active {
	color: #4CAF50;
	border-bottom-color: #4CAF50;
}

html.dark-mode .bmp-invite-section {
	display: none;
}

html.dark-mode .bmp-invite-section.active {
	display: block;
}

html.dark-mode .bmp-invite-form {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

html.dark-mode .bmp-form-group {
	margin-bottom: 15px;
}

html.dark-mode .bmp-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #e0e0e0;
	font-size: 14px;
	font-weight: 500;
}

html.dark-mode .bmp-form-group input,
html.dark-mode .bmp-form-group textarea,
html.dark-mode .bmp-form-group select {
	width: 100%;
	padding: 10px;
	background-color: #1a1a1a;
	border: 2px solid #333;
	color: #e0e0e0;
	border-radius: 4px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

html.dark-mode .bmp-form-group input::placeholder,
html.dark-mode .bmp-form-group textarea::placeholder {
	color: #666666;
}

html.dark-mode .bmp-form-group input:focus,
html.dark-mode .bmp-form-group textarea:focus,
html.dark-mode .bmp-form-group select:focus {
	outline: none;
	border-color: #4CAF50;
	box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

html.dark-mode .bmp-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

html.dark-mode .bmp-button {
	background: linear-gradient(to bottom, #383838 0%, #343434 100%);
	color: #ffffff;
	border-top: 1px solid #555555;
	border-left: 1px solid #555555;
	border-right: 1px solid #282828;
	border-bottom: 1px solid #282828;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
	border-radius: 6px;
	padding: 0 15px;
	height: 32px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	width: 100%;
}

html.dark-mode .bmp-button:hover {
	background: linear-gradient(to bottom, #404040 0%, #3a3a3a 100%);
}

html.dark-mode .bmp-button:active {
	transform: translateY(1px);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

html.dark-mode .bmp-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

html.dark-mode #friend-suggestions {
	background: #2a2a2a;
	border: 1px solid #333;
	border-radius: 4px;
	max-height: 300px;
	overflow-y: auto;
	margin-top: 10px;
}

html.dark-mode .bmp-friend-suggestion {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
	border-bottom: 1px solid #333;
}

html.dark-mode .bmp-friend-suggestion:hover {
	background: #1a1a1a;
}

html.dark-mode .bmp-friend-suggestion img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

html.dark-mode .bmp-friend-suggestion span {
	color: #e0e0e0;
}

html.dark-mode .bmp-no-results {
	padding: 15px;
	text-align: center;
	color: #999999;
	font-size: 13px;
}

html.dark-mode .bmp-invitations-list {
	display: grid;
	gap: 15px;
}

html.dark-mode .bmp-invite-item {
	background: #2a2a2a;
	border: 1px solid #333;
	padding: 15px;
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

html.dark-mode .bmp-invite-details {
	flex: 1;
}

html.dark-mode .bmp-invite-to {
	color: #e0e0e0;
	font-weight: 500;
	margin-bottom: 5px;
}

html.dark-mode .bmp-invite-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	margin-top: 5px;
}

html.dark-mode .bmp-invite-status.pending {
	background: #3d3520;
	color: #f0c674;
}

html.dark-mode .bmp-invite-status.accepted {
	background: #1b3a1b;
	color: #81c784;
}

html.dark-mode .bmp-invite-status.expired {
	background: #3a1b1b;
	color: #ef9a9a;
}

html.dark-mode .bmp-invite-date {
	font-size: 12px;
	color: #999999;
	margin-top: 5px;
}

html.dark-mode .bmp-invite-actions {
	display: flex;
	gap: 10px;
}

html.dark-mode .bmp-cancel-invite {
	background: #3a1b1b;
	color: #ef9a9a;
	border: 1px solid #5a2b2b;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s ease;
}

html.dark-mode .bmp-cancel-invite:hover {
	background: #5a2b2b;
}

html.dark-mode #invite-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

html.dark-mode .bmp-stat-card {
	background: #2a2a2a;
	border: 1px solid #333;
	padding: 15px;
	border-radius: 6px;
	text-align: center;
}

html.dark-mode .bmp-stat-label {
	color: #999999;
	font-size: 12px;
	margin-bottom: 8px;
}

html.dark-mode .bmp-stat-value {
	color: #4CAF50;
	font-size: 28px;
	font-weight: bold;
}
/* END: BMP Invite Frontend Styles - DARK THEME */
