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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #0654c4 0%, #1e73be 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

[data-show], [data-hide] {
	cursor: pointer;
}

/* ========================================
   Animations & Keyframes
   ======================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes tagSlideIn {
	from {
		opacity: 0;
		transform: translateX(-10px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

/* ========================================
   margins
   ======================================== */
.mb-0 {
	margin-bottom:0;
}

/* ========================================
   Top Navigation
   ======================================== */
.top-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 1000;
	padding: 0 20px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	line-height: 60px;
}

.logo {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-right: 40px;
	display: inline-block;
	vertical-align: middle;
}

.logo img {
	height: 40px;
	margin-top: 8px;
	vertical-align: middle;
}

.nav-links {
	display: inline-block;
	list-style: none;
	vertical-align: middle;
}

.nav-item {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
	line-height: normal;
}

.nav-link:hover,
.nav-link.active {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
	transform: translateY(-1px);
}

.dropdown-arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
	display: inline-block;
	margin-left: 5px;
}

.nav-item:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	min-width: 200px;
	overflow: hidden;
}

.nav-item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-link {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-link:last-child {
	border-bottom: none;
}

.dropdown-link:hover {
	background: #f0f6ff;
	color: #0654c4;
	padding-left: 25px;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	padding: 10px;
	border-radius: 8px;
	transition: all 0.3s ease;
	float: right;
	margin-top: 10px;
}

.mobile-menu-btn:hover {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
	position: fixed;
	top: 60px;
	left: 0;
	height: calc(100vh - 60px);
	width: 280px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 999;
	overflow: hidden;
}

.sidebar.collapsed {
	width: 80px;
}

.sidebar-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #0654c4;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	line-height: 40px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(6, 84, 196, 0.3);
}

.sidebar-toggle:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(6, 84, 196, 0.4);
}

.sidebar-menu {
	list-style: none;
	padding: 80px 0 20px 0;
}

.sidebar-item {
	margin: 5px 0;
}

.sidebar-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sidebar-link:hover,
.sidebar-link.active {
	background: linear-gradient(90deg, rgba(6, 84, 196, 0.1), transparent);
	color: #0654c4;
	transform: translateX(5px);
	text-decoration:none !important;
}

.sidebar-link.active {
	background: linear-gradient(90deg, rgba(6, 84, 196, 0.15), transparent);
}

.sidebar-icon {
	font-size: 20px;
	min-width: 30px;
	text-align: center;
	margin-right: 15px;
	transition: all 0.3s ease;
	display: inline-block;
	vertical-align: middle;
}

.sidebar-text {
	font-weight: 500;
	opacity: 1;
	transition: all 0.3s ease;
	display: inline-block;
	vertical-align: middle;
}

.sidebar.collapsed .sidebar-text {
	opacity: 0;
	transform: translateX(-20px);
	display: none;
}

.sidebar.collapsed .sidebar-link {
	text-align: center;
	padding: 15px 10px;
}

.sidebar.collapsed .sidebar-icon {
	margin-right: 0;
}

.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 998;
}

.sidebar-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ========================================
   Main Content & Cards
   ======================================== */
.main-content {
	margin-left: 280px;
	margin-top: 60px;
	padding: 40px;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	min-height: calc(100vh - 60px);
}

.main-content.expanded {
	margin-left: 80px;
}

.content-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: fadeInUp 0.8s ease-out;
}

.content-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.content-text {
	color: #666;
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 30px;
}

.feature-grid {
	margin-top: 30px;
	clear: both;
}

.feature-card {
	background: linear-gradient(135deg, rgba(6, 84, 196, 0.1), rgba(30, 115, 190, 0.1));
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: fadeInUp 0.8s ease-out;
	width: calc(25% - 15px);
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	margin-bottom: 20px;
}

/*.feature-card:nth-child(4n) {
	margin-right: 0;
}*/

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

.feature-icon {
	font-size: 40px;
	margin-bottom: 15px;
	color: #0654c4;
}

.feature-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.feature-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* ========================================
   Form Components Base
   ======================================== */
.form-group {
	margin-bottom: 25px;
	position: relative;
	animation: fadeInUp 0.6s ease-out;
}

.form-group:nth-child(2) { animation-delay: 0.1s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.3s; }
.form-group:nth-child(5) { animation-delay: 0.4s; }
.form-group:nth-child(6) { animation-delay: 0.5s; }
.form-group:nth-child(7) { animation-delay: 0.6s; }
.form-group:nth-child(8) { animation-delay: 0.7s; }

.form-group-no-margin {
	margin-bottom: 0;
}

.form-label {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-label-small {
	margin-bottom: 6px;
	font-size: 13px;
	color: #333;
}

/* ========================================
   Input Controls
   ======================================== */
.input-wrapper {
	position: relative;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(6, 84, 196, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	color: #333;
	transition: all 0.3s ease;
	font-family: inherit;
	outline: none;
}

.form-input:focus,
.form-textarea:focus {
	border-color: #0654c4;
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(6, 84, 196, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #999;
	opacity: 0.7;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-input-small {
	padding: 8px 12px;
	font-size: 14px;
}

.input-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #0654c4;
	font-size: 18px;
}
/* ========================================
   Input with Loading container on top
   ======================================== */
.form-input-with-loading-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.form-input-with-loading {
	padding-right: 50px; /* Extra space for loading gif */
}

.inputDropdowns_LoadingGif {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
/* ========================================
   Input with Button Component
   ======================================== */
.input-button-group {
	display: block;
	position: relative; /* Added for absolute positioning of button */
	border: 2px solid rgba(6, 84, 196, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	overflow: hidden;
	transition: all 0.3s ease;
}

.input-button-group:focus-within {
	border-color: #0654c4;
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(6, 84, 196, 0.15);
}

.input-button-input {
	width: calc(100% - 120px);
	padding: 15px 20px;
	border: none;
	background: transparent;
	font-size: 16px;
	color: #333;
	outline: none;
	font-family: inherit;
	display: inline-block;
	vertical-align: top;
}

.input-button-input::placeholder {
	color: #999;
	opacity: 0.7;
}

.input-button {
	position: absolute; /* Changed from inline-block */
	right: 0; /* Position at right edge */
	top: 0; /* Align to top */
	bottom: 0; /* Stretch to bottom */
	width: 120px;
	padding: 15px 25px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	color: white;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	white-space: nowrap;
	text-align: center;
	border-radius: 0 10px 10px 0; /* Round only right corners */
}

.input-button:hover {
	background: linear-gradient(135deg, #054393, #1a5da6);
	/* Removed translateX to prevent overlap issues */
}

.input-button:active {
	transform: scale(0.98); /* Removed translateX */
}

.input-button .icon {
	font-size: 16px;
	display: inline-block;
	margin-right: 8px;
}

/* Input Button Variants */
.input-button-group.secondary .input-button {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
}

.input-button-group.secondary .input-button:hover {
	background: rgba(6, 84, 196, 0.2);
}

.input-button-group.success .input-button {
	background: linear-gradient(135deg, #28a745, #20c997);
}

.input-button-group.warning .input-button {
	background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.input-button-group.danger .input-button {
	background: linear-gradient(135deg, #dc3545, #e83e8c);
}

/* Size variants */
.input-button-group.small .input-button-input,
.input-button-group.small .input-button {
	padding: 10px 15px;
	font-size: 14px;
}

.input-button-group.large .input-button-input,
.input-button-group.large .input-button {
	padding: 20px 30px;
	font-size: 18px;
}

/* Mobile responsiveness fix for absolute positioned button */
@media (max-width: 768px) {
	.input-button-group {
		display: block;
	}
	
	.input-button-input {
		width: 100%;
		display: block;
		border-bottom: 1px solid rgba(6, 84, 196, 0.1);
	}

	.input-button {
		position: relative; /* Change back to relative on mobile */
		width: 100%;
		display: block;
		border-radius: 0 0 10px 10px;
	}
}

/* Compact variant for smaller buttons (useful for the broadcast page) */
.input-button-group.compact .input-button {
	width: 80px;
	padding: 15px 15px;
	font-size: 13px;
}

.input-button-group.compact .input-button-input {
	width: calc(100% - 80px);
}
/* ========================================
   Radio Buttons
   ======================================== */
.radio-group {
	display: block;
}

.radio-item {
	position: relative;
	cursor: pointer;
	user-select: none;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 10px;
}

.radio-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio-checkmark {
	display: inline-block;
	padding: 12px 20px;
	background: rgba(30, 115, 190, 0.05);
	border: 2px solid rgba(30, 115, 190, 0.2);
	border-radius: 25px;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #333;
	min-width: 80px;
	text-align: center;
}

.radio-checkmark:before {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid #1e73be;
	margin-right: 10px;
	transition: all 0.3s ease;
	display: inline-block;
	vertical-align: middle;
}

.radio-input:checked + .radio-checkmark,
.radio-item.checked .radio-checkmark {
	background: linear-gradient(135deg, #1e73be, #0ea5e9);
	border-color: #1e73be;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 115, 190, 0.3);
}

.radio-input:checked + .radio-checkmark:before {
	background: white;
	border-color: white;
}

.radio-item:hover .radio-checkmark {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(30, 115, 190, 0.2);
}

/* ========================================
   Checkboxes
   ======================================== */
.checkbox-group {
	display: block;
	margin: 10px 0;
}

.checkbox-item {
	display: block;
	position: relative;
	margin-bottom: 8px;
}

.checkbox-input {
	display: none;
}

.checkbox-checkmark {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	color: #333;
	font-size: 14px;
	line-height: 1.4;
	display: inline-block;
}

.checkbox-checkmark::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #1e73be;
	border-radius: 4px;
	background-color: white;
	box-sizing: border-box;
	transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-input:checked + .checkbox-checkmark::before {
	background-color: #1e73be;
	border-color: #1e73be;
}

.checkbox-input:checked + .checkbox-checkmark::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	margin-top: -2px;
}

.checkbox-checkmark:hover::before {
	border-color: #155d99;
}

.checkbox-input:focus + .checkbox-checkmark::before {
	outline: 2px solid #155d99;
	outline-offset: 2px;
}

/* Checkbox variants */
.checkbox-group.compact .checkbox-checkmark {
	font-size: 12px;
	padding-left: 22px;
}

.checkbox-group.compact .checkbox-checkmark::before {
	width: 14px;
	height: 14px;
}

.checkbox-group.pill {
	display: block;
}

.checkbox-group.pill .checkbox-item {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}

.checkbox-group.pill .checkbox-checkmark {
	font-size: 13px;
	padding: 6px 12px 6px 32px;
	border-radius: 999px;
	background-color: #f0f8ff;
	border: 1px solid #1e73be;
	transition: background-color 0.3s;
}

.checkbox-group.pill .checkbox-checkmark::before {
	border-radius: 50%;
	left: 8px;
	width: 20px;
	height: 20px;
}

.checkbox-group.pill .checkbox-checkmark::after {
	left: 14px;
}

.checkbox-group.large .checkbox-checkmark {
	font-size: 18px;
	padding-left: 34px;
}

.checkbox-group.large .checkbox-checkmark::before {
	width: 22px;
	height: 22px;
}

/* ========================================
   Switch Buttons (Toggle)
   ======================================== */
.switch-wrapper {
	display: block;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 32px;
	vertical-align: middle;
	margin-right: 15px;
}

.switch-input {
	opacity: 0;
	width: 0;
	height: 0;
}

.switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ccc;
	transition: all 0.4s ease;
	border-radius: 32px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: 4px;
	bottom: 4px;
	background: white;
	transition: all 0.4s ease;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.switch-input:checked + .switch-slider {
	background: linear-gradient(135deg, #0654c4, #1e73be);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-input:focus + .switch-slider {
	box-shadow: 0 0 1px #0654c4, inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-input:checked + .switch-slider:before {
	transform: translateX(28px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.switch-label {
	font-weight: 500;
	color: #333;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

.switch-value {
	font-size: 14px;
	color: #0654c4;
	font-weight: 600;
	min-width: 40px;
	display: inline-block;
	vertical-align: middle;
}

/* ========================================
   Sliders
   ======================================== */
.slider-wrapper {
	padding: 10px 0;
}

.slider-container {
	position: relative;
	margin: 20px 0;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: linear-gradient(to right, #0654c4 0%, #0654c4 var(--value), #ddd var(--value), #ddd 100%);
	outline: none;
	transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(6, 84, 196, 0.3);
	transition: all 0.3s ease;
}

.slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 12px rgba(6, 84, 196, 0.3);
}

.slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(6, 84, 196, 0.4);
}

.slider-values {
	display: block;
	font-size: 12px;
	color: #666;
	margin-top: 8px;
}

.slider-values span {
	display: inline-block;
	width: 33.33%;
	text-align: center;
}

.slider-values span:first-child {
	text-align: left;
}

.slider-values span:last-child {
	text-align: right;
}

.slider-current {
	text-align: center;
	font-weight: 600;
	color: #0654c4;
	margin-top: 10px;
	font-size: 16px;
}

/* Multi-Value Slider (Range) */
.multi-slider-wrapper {
	position: relative;
	padding: 20px 0;
}

.multi-slider-container {
	position: relative;
	height: 40px;
	margin: 20px 0;
}

.multi-slider-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 8px;
	background: #ddd;
	border-radius: 4px;
	transform: translateY(-50%);
}

.multi-slider-range {
	position: absolute;
	height: 8px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	border-radius: 4px;
	top: 50%;
	transform: translateY(-50%);
}

.multi-slider-thumb {
	position: absolute;
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	border-radius: 50%;
	cursor: pointer;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 4px 12px rgba(6, 84, 196, 0.3);
	transition: all 0.3s ease;
	z-index: 2;
}

.multi-slider-thumb:hover {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(6, 84, 196, 0.4);
}

.multi-slider-thumb.active {
	z-index: 3;
	transform: translate(-50%, -50%) scale(1.2);
	box-shadow: 0 8px 25px rgba(6, 84, 196, 0.5);
}

.multi-slider-values {
	display: block;
	font-size: 12px;
	color: #666;
	margin-top: 8px;
}

.multi-slider-values span {
	display: inline-block;
	width: 33.33%;
	text-align: center;
}

.multi-slider-values span:first-child {
	text-align: left;
}

.multi-slider-values span:last-child {
	text-align: right;
}

.multi-slider-current {
	text-align: center;
	font-weight: 600;
	color: #0654c4;
	margin-top: 10px;
	font-size: 16px;
}

/* ========================================
   Select Dropdown
   ======================================== */
.select-wrapper {
	position: relative;
}

.form-select {
	width: 100%;
	padding: 15px 50px 15px 20px;
	border: 2px solid rgba(30, 115, 190, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	outline: none;
}

.form-select:focus {
	border-color: #1e73be;
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(30, 115, 190, 0.15);
}

.form-select-small {
	padding: 8px 12px;
	font-size: 14px;
}

.select-arrow {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #1e73be;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-select:focus + .select-arrow {
	transform: translateY(-50%) rotate(180deg);
}

/* ========================================
   Multi-Select
   ======================================== */
.multiselect-wrapper {
	position: relative;
}

.multiselect-input {
	width: 100%;
	padding: 15px 50px 15px 20px;
	border: 2px solid rgba(30, 115, 190, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	min-height: 52px;
}

.multiselect-input:focus,
.multiselect-input.active {
	border-color: #1e73be;
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(30, 115, 190, 0.15);
}

.multiselect-placeholder {
	color: #999;
	opacity: 0.7;
}

.multiselect-tags {
	display: block;
}

.multiselect-tag {
	background: linear-gradient(135deg, #1e73be, #0ea5e9);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 8px;
	animation: tagSlideIn 0.3s ease;
}

.multiselect-tag-remove {
	cursor: pointer;
	font-weight: bold;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	margin-left: 8px;
	display: inline-block;
}

.multiselect-tag-remove:hover {
	opacity: 1;
}

.multiselect-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 2px solid #1e73be;
	border-top: none;
	border-radius: 0 0 12px 12px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.multiselect-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.multiselect-option {
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	display: block;
}

.multiselect-option:last-child {
	border-bottom: none;
}

.multiselect-option:hover {
	background: #f0f8ff;
	color: #1e73be;
	padding-left: 25px;
}

.multiselect-option.selected {
	background: rgba(30, 115, 190, 0.1);
	color: #1e73be;
	font-weight: 600;
}

.multiselect-option-check {
	color: #1e73be;
	font-weight: bold;
	float: right;
}

/* ========================================
   Tabs Component
   ======================================== */
.tabs-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.tabs-nav {
	display: block;
	background: rgba(6, 84, 196, 0.05);
	border-bottom: 1px solid rgba(6, 84, 196, 0.1);
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
	display: none;
}

.tab-button {
	min-width: 120px;
	padding: 15px 20px;
	background: transparent;
	border: none;
	color: #666;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
}

.tab-button:hover {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
}

.tab-button.active {
	background: linear-gradient(135deg, rgba(6, 84, 196, 0.1), rgba(30, 115, 190, 0.1));
	color: #0654c4;
	font-weight: 600;
}

.tab-button.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	border-radius: 3px 3px 0 0;
}

.tab-content {
	padding: 25px;
	min-height: 200px;
}

.tab-pane {
	display: none;
	animation: fadeInUp 0.4s ease-out;
}

.tab-pane.active {
	display: block;
}

.tab-pane h3 {
	color: #333;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}

.tab-pane p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.tab-pane .feature-list {
	list-style: none;
	padding: 0;
}

.tab-pane .feature-list li {
	padding: 8px 0;
	color: #666;
	position: relative;
	padding-left: 25px;
}

.tab-pane .feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0654c4;
	font-weight: bold;
}

/* Tab variants */
.tabs-nav.icon-tabs .tab-button {
	display: inline-block;
}

.tabs-nav.icon-tabs .tab-icon {
	font-size: 16px;
	display: inline-block;
	margin-right: 8px;
}

.tabs-container.vertical {
	display: block;
}

.tabs-container.vertical .tabs-nav {
	display: inline-block;
	width: 200px;
	border-bottom: none;
	border-right: 1px solid rgba(30, 115, 190, 0.1);
	vertical-align: top;
}

.tabs-container.vertical .tab-button {
	display: block;
	text-align: left;
	border-radius: 0;
	width: 100%;
}

.tabs-container.vertical .tab-button.active::after {
	top: 0;
	bottom: 0;
	right: 0;
	left: auto;
	width: 3px;
	height: auto;
	border-radius: 0 3px 3px 0;
}

.tabs-container.vertical .tab-content {
	display: inline-block;
	width: calc(100% - 200px);
	vertical-align: top;
}

.tabs-nav.pill-tabs {
	background: transparent;
	border: none;
	padding: 10px;
}

.tabs-nav.pill-tabs .tab-button {
	border-radius: 25px;
	background: rgba(30, 115, 190, 0.1);
	margin: 0 5px 0 0;
}

.tabs-nav.pill-tabs .tab-button.active {
	background: linear-gradient(135deg, #1e73be, #0ea5e9);
	color: white;
}

.tabs-nav.pill-tabs .tab-button.active::after {
	display: none;
}

/* ========================================
   Data Table Component
   ======================================== */
.table-wrapper {
	width: 100%;
	overflow-x: auto;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: #333;
	background: transparent;
}

.data-table thead {
	background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(14, 165, 233, 0.1));
	border-bottom: 2px solid rgba(30, 115, 190, 0.2);
}

.data-table th {
	padding: 15px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(30, 115, 190, 0.1);
	position: relative;
	user-select: none;
}

.data-table th.sortable {
	cursor: pointer;
	transition: all 0.3s ease;
}

.data-table th.sortable:hover {
	background: rgba(30, 115, 190, 0.15);
	color: #1e73be;
}

.data-table th.sortable.sort-asc,
.data-table th.sortable.sort-desc {
	background: rgba(30, 115, 190, 0.2);
	color: #1e73be;
}

.th-content {
	display: block;
}

.th-icon {
	font-size: 14px;
	opacity: 0.8;
	display: inline-block;
	margin-right: 8px;
}

.th-text {
	display: inline-block;
}

.sort-arrows {
	display: inline-block;
	font-size: 10px;
	opacity: 0.5;
	transition: all 0.3s ease;
	margin-left: 8px;
	float: right;
}

.sort-arrows span {
	display: block;
	margin-bottom: 1px;
}

.data-table th.sortable:hover .sort-arrows {
	opacity: 0.8;
}

.data-table th.sortable.sort-asc .sort-up {
	opacity: 1;
	color: #1e73be;
	font-weight: bold;
}

.data-table th.sortable.sort-desc .sort-down {
	opacity: 1;
	color: #1e73be;
	font-weight: bold;
}

.data-table td {
	padding: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	vertical-align: middle;
	transition: all 0.3s ease;
}

.data-table tbody tr {
	transition: all 0.3s ease;
}

.data-table tbody tr:hover {
	background: rgba(30, 115, 190, 0.05);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(30, 115, 190, 0.1);
}

.data-table tbody tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.02);
}

.data-table tbody tr:nth-child(even):hover {
	background: rgba(30, 115, 190, 0.05);
}

/* Table Cell Components */
.user-cell,
.company-cell,
.project-cell {
	display: block;
}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e73be, #0ea5e9);
	color: white;
	display: inline-block;
	text-align: center;
	line-height: 32px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	vertical-align: middle;
	margin-right: 10px;
}

.user-cell span,
.company-cell span,
.project-cell span {
	display: inline-block;
	vertical-align: middle;
}

.project-status {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.project-status.success {
	background: #28a745;
	box-shadow: 0 0 8px rgba(40, 167, 69, 0.3);
}

.project-status.warning {
	background: #ffc107;
	box-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
}

.project-status.danger {
	background: #dc3545;
	box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

.progress-bar {
	position: relative;
	width: 100px;
	height: 20px;
	background: rgba(30, 115, 190, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(135deg, #1e73be, #0ea5e9);
	border-radius: 10px;
	transition: width 0.3s ease;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 2s infinite;
}

.progress-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 11px;
	font-weight: 600;
	color: #333;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
	z-index: 2;
}

/* ========================================
   Badges & Status Components
   ======================================== */
.role-badge,
.status-badge {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	display: inline-block;
}

.role-badge.admin {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
	border: 1px solid rgba(220, 53, 69, 0.2);
}

.role-badge.editor {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	border: 1px solid rgba(40, 167, 69, 0.2);
}

.role-badge.viewer {
	background: rgba(30, 115, 190, 0.1);
	color: #1e73be;
	border: 1px solid rgba(30, 115, 190, 0.2);
}

.status-badge.active {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-badge.inactive {
	background: rgba(108, 117, 125, 0.1);
	color: #6c757d;
	border: 1px solid rgba(108, 117, 125, 0.2);
}

.status-badge.pending {
	background: rgba(255, 193, 7, 0.1);
	color: #ffc107;
	border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Company Type Badges */
.company-type-enterprise,
.company-type-technology {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
	border: 1px solid rgba(6, 84, 196, 0.2);
}

.company-type-startup {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	border: 1px solid rgba(40, 167, 69, 0.2);
}

.company-type-healthcare {
	background: rgba(23, 162, 184, 0.1);
	color: #17a2b8;
	border: 1px solid rgba(23, 162, 184, 0.2);
}

.company-type-financial {
	background: rgba(255, 193, 7, 0.1);
	color: #ffc107;
	border: 1px solid rgba(255, 193, 7, 0.2);
}

.company-type-consulting {
	background: rgba(108, 117, 125, 0.1);
	color: #6c757d;
	border: 1px solid rgba(108, 117, 125, 0.2);
}

.company-type-manufacturing {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
	border: 1px solid rgba(220, 53, 69, 0.2);
}

.company-type-realestate {
	background: rgba(253, 126, 20, 0.1);
	color: #fd7e14;
	border: 1px solid rgba(253, 126, 20, 0.2);
}

.company-type-education {
	background: rgba(111, 66, 193, 0.1);
	color: #6f42c1;
	border: 1px solid rgba(111, 66, 193, 0.2);
}

.company-type-government {
	background: rgba(222, 226, 230, 0.8);
	color: #495057;
	border: 1px solid rgba(222, 226, 230, 0.8);
}

/* ========================================
   Action Buttons
   ======================================== */
.action-buttons {
	display: block;
}

.action-btn {
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	display: inline-block;
	text-align: center;
	line-height: 28px;
	transition: all 0.3s ease;
	background: rgba(30, 115, 190, 0.1);
	color: #1e73be;
	margin-right: 5px;
}

.action-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

.action-btn.edit:hover {
	background: rgba(40, 167, 69, 0.2);
	color: #28a745;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.action-btn.view:hover {
	background: rgba(30, 115, 190, 0.2);
	color: #1e73be;
	box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

.action-btn.delete:hover {
	background: rgba(220, 53, 69, 0.2);
	color: #dc3545;
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.action-btn-stream {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
}

.action-btn-control {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
}

.action-btn-end {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}

/* ========================================
   Demo & Button Components
   ======================================== */
.demo-buttons {
	display: block;
	margin-top: 25px;
}

.demo-btn {
	padding: 12px 24px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	color: white;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(6, 84, 196, 0.3);
	font-size: 14px;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 10px;
}

.demo-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(6, 84, 196, 0.4);
}

.demo-btn.secondary {
	background: rgba(6, 84, 196, 0.1);
	color: #0654c4;
	box-shadow: none;
}

.demo-btn.secondary:hover {
	background: rgba(6, 84, 196, 0.2);
	transform: translateY(-1px);
}

.demo-btn-small {
	padding: 10px 20px;
	font-size: 14px;
}

.demo-btn-success {
	background:green;
}

.demo-btn-danger {
	background:red;
}

/* ========================================
   Special Components
   ======================================== */
.controls-demo-grid {
	display: block;
	margin-top: 30px;
}

.controls-demo-grid .form-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 30px;
	width: calc(50% - 15px);
	display: inline-block;
	vertical-align: top;
}

.controls-demo-grid .form-container:nth-child(odd) {
	margin-right: 30px;
}

.demo-section {
	margin-bottom: 0;
}

.demo-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #0654c4, #1e73be);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.framework-actions {
	width: 100%;
	margin-top: 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.framework-actions .demo-title {
	margin-bottom: 15px;
}

.framework-actions .content-text {
	margin-bottom: 25px;
	font-size: 14px;
	color: #666;
}

.framework-actions .demo-buttons {
	margin-top: 0;
	text-align: center;
}

/* ========================================
   Search & Filter Components
   ======================================== */

.search-filters-flex-container {
	margin-top: 20px; 
	display: block;
}

.search-filters-flex-container .demo-btn {
	display: inline-block;
	margin-right: 10px;
}

.boxed-internal-container,
.companies-filters {
	margin: 30px 0;
	padding: 25px;
	background: rgba(6, 84, 196, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(6, 84, 196, 0.1);
}

.search-filters-title,
.companies-filters-title {
	color: #333;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}

.search-filters-grid,
.companies-filters-grid {
	display: block;
}

.search-filters-grid .form-group,
.companies-filters-grid .form-group {
	display: inline-block;
	width: calc(16.66% - 15px);
	margin-right: 15px;
	vertical-align: top;
}

.search-filters-grid .form-group:nth-child(6n),
.companies-filters-grid .form-group:nth-child(3n) {
	margin-right: 0;
}

.search-buttons-container,
.companies-filter-buttons {
	margin-top: 20px;
	display: block;
}

.companies-filter-group {
	margin-bottom: 0;
}

.companies-filter-label {
	margin-bottom: 6px;
	font-size: 13px;
	color: #333;
}

.companies-filter-input {
	padding: 8px 12px;
	font-size: 14px;
}

.companies-filter-select {
	padding: 8px 12px;
	font-size: 14px;
}

.companies-filter-icon {
	font-size: 14px;
	right: 10px;
}

.companies-search-btn,
.companies-clear-btn {
	padding: 10px 20px;
	font-size: 14px;
}

/* ========================================
   Live Indicators & Status
   ======================================== */
.live-indicator {
	width: 16px;
	height: 16px;
	background: #dc3545;
	border-radius: 50%;
	animation: pulse 2s infinite;
	box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
	display: inline-block;
	vertical-align: middle;
}

.webcast-live-dot {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 8px;
	height: 8px;
	background: #dc3545;
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

.live-viewer-indicator {
	width: 6px;
	height: 6px;
	background: #28a745;
	border-radius: 50%;
	animation: pulse 1s infinite;
	display: inline-block;
	margin-right: 5px;
}

.live-viewer-count {
	color: #28a745;
	font-weight: 600;
	display: inline-block;
}

.live-duration {
	color: #dc3545;
	font-weight: 600;
}

/* ========================================
   Webcast & Company Images
   ======================================== */
.webcast-image {
	width: 60px;
	height: 40px;
	border-radius: 4px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	color: white;
	font-size: 12px;
	position: relative;
}


/* Company logo variants - consolidated with consistent sizing */
.company-logo-tc,
.company-logo-es,
.company-logo-hc,
.company-logo-da,
.company-logo-fs,
.company-logo-cs,
.company-logo-mi,
.company-logo-gd,
.company-logo-re,
.company-logo-as,
.company-logo-el,
.company-logo-ws,
.company-logo-bc,
.company-logo-ri,
.company-logo-ep,
.company-logo-id,
.company-logo-gs,
.company-logo-ms {
	width: 40px;
	height: 40px;
}

.company-logo-tc { background: linear-gradient(135deg, #667eea, #764ba2); }
.company-logo-es { background: linear-gradient(135deg, #28a745, #155724); }
.company-logo-hc { background: linear-gradient(135deg, #17a2b8, #138496); }
.company-logo-da { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
.company-logo-fs { background: linear-gradient(135deg, #20c997, #1e7e34); }
.company-logo-cs { background: linear-gradient(135deg, #6610f2, #495057); }
.company-logo-mi { background: linear-gradient(135deg, #dc3545, #c82333); }
.company-logo-gd { background: linear-gradient(135deg, #6f42c1, #563d7c); }
.company-logo-re { background: linear-gradient(135deg, #fd7e14, #dc3545); }
.company-logo-as { background: linear-gradient(135deg, #007bff, #17a2b8); }
.company-logo-el { background: linear-gradient(135deg, #20c997, #17a2b8); }
.company-logo-ws { background: linear-gradient(135deg, #e83e8c, #dc3545); }
.company-logo-bc { background: linear-gradient(135deg, #28a745, #155724); }
.company-logo-ri { background: linear-gradient(135deg, #007bff, #0056b3); }
.company-logo-ep { background: linear-gradient(135deg, #ffc107, #e0a800); }
.company-logo-id { background: linear-gradient(135deg, #17a2b8, #0056b3); }
.company-logo-gs { background: linear-gradient(135deg, #6610f2, #e83e8c); }
.company-logo-ms { background: linear-gradient(135deg, #dc3545, #fd7e14); }

/* ========================================
   Pagination Components
   ======================================== */
.pagination-wrapper {
    margin-top: 30px;
    display: block;
    clear: both;
}

.pagination-info {
    color: #666;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.pagination-controls {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
}

.pagination-btn {
    padding: 8px 12px;
    border: 2px solid rgba(6, 84, 196, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #0654c4;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.pagination-btn:hover {
    background: rgba(6, 84, 196, 0.1);
    border-color: #0654c4;
}

.pagination-btn.disabled {
    color: #999;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(6, 84, 196, 0.2);
}

.pagination-pages {
    display: inline-block;
    vertical-align: middle;
}

.pagination-page {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(6, 84, 196, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.pagination-page:hover {
    background: rgba(6, 84, 196, 0.1);
    border-color: #0654c4;
}

.pagination-page.active {
    border-color: #0654c4;
    background: linear-gradient(135deg, #0654c4, #1e73be);
    color: white;
}

.pagination-page.active:hover {
    background: linear-gradient(135deg, #0654c4, #1e73be);
    color: white;
}

/* New class for ellipsis */
.pagination-ellipsis {
    padding: 0 10px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
}

.pagination-size {
    display: inline-block;
    vertical-align: middle;
    color: #666;
    font-size: 14px;
    float: right;
}

.pagination-size span {
    display: inline-block;
    margin: 0 5px;
}

.pagination-size select {
    padding: 6px 10px;
    border: 2px solid rgba(6, 84, 196, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    cursor: pointer;
}
/* ========================================
   Add Button Components
   ======================================== */
.add-webcast-button,
.companies-add-button {
	margin-bottom: 30px;
}

.companies-add-btn {
	margin-bottom: 30px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
	.sidebar {
		width: 250px;
	}

	.main-content {
		margin-left: 250px;
	}

	.sidebar.collapsed {
		width: 70px;
	}

	.main-content.expanded {
		margin-left: 70px;
	}
	
	.feature-card {
		width: calc(50% - 10px);
		margin-right: 20px;
	}
	
	.feature-card:nth-child(4n) {
		margin-right: 20px;
	}
	
	.feature-card:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.top-nav {
		padding: 0 15px;
	}

	.sidebar {
		transform: translateX(-100%);
		width: 280px;
		z-index: 999;
	}

	.sidebar.mobile-open {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
		padding: 20px 15px;
	}

	.main-content.expanded {
		margin-left: 0;
	}

	.content-card {
		padding: 25px 20px;
	}

	.content-title {
		font-size: 28px;
	}

	.feature-card {
		width: 100%;
		margin-right: 0;
		display: block;
	}

	/* Form responsiveness */
	.form-container {
		padding: 20px;
		border-radius: 15px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.radio-item {
		display: block;
		margin-bottom: 10px;
	}

	.radio-checkmark {
		min-width: auto;
		display: block;
		text-align: left;
	}

	.switch-wrapper {
		display: block;
	}
	
	.switch {
		display: block;
		margin-bottom: 10px;
	}
	
	.switch-label {
		display: block;
		margin-bottom: 5px;
	}
	
	.switch-value {
		display: block;
	}

	.multiselect-tag {
		font-size: 13px;
		padding: 5px 10px;
		margin-right: 6px;
		margin-bottom: 6px;
	}

	.tabs-nav {
		white-space: nowrap;
		overflow-x: auto;
	}

	.tab-button {
		min-width: 100px;
		padding: 12px 15px;
		font-size: 13px;
	}

	.tabs-container.vertical {
		display: block;
	}

	.tabs-container.vertical .tabs-nav {
		width: 100%;
		display: block;
		border-right: none;
		border-bottom: 1px solid rgba(30, 115, 190, 0.1);
	}
	
	.tabs-container.vertical .tab-content {
		width: 100%;
		display: block;
	}

	/* Table responsiveness */
	.table-wrapper {
		border-radius: 10px;
	}

	.data-table th,
	.data-table td {
		padding: 8px 6px;
		font-size: 12px;
	}

	.th-icon {
		font-size: 12px;
		margin-right: 4px;
	}

	.user-avatar {
		width: 24px;
		height: 24px;
		font-size: 10px;
		line-height: 24px;
	}

	.progress-bar {
		width: 80px;
		height: 16px;
	}

	.progress-text {
		font-size: 9px;
	}

	.action-btn {
		width: 24px;
		height: 24px;
		font-size: 10px;
		line-height: 24px;
		margin-right: 2px;
	}

	.role-badge,
	.status-badge {
		padding: 2px 6px;
		font-size: 9px;
	}

	/* Filter responsiveness */
	.search-filters-grid .form-group,
	.companies-filters-grid .form-group {
		width: 100%;
		display: block;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.search-buttons-container .demo-btn,
	.companies-filter-buttons .demo-btn {
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.pagination-wrapper {
		text-align: center;
	}
	
	.pagination-info {
		display: block;
		margin-bottom: 15px;
	}
	
	.pagination-controls {
		display: block;
		margin: 0 0 15px 0;
	}
	
	.pagination-size {
		display: block;
		float: none;
		text-align: center;
	}

	/* Framework actions */
	.framework-actions {
		padding: 30px 20px;
	}

	.framework-actions .demo-btn {
		display: block;
		width: 100%;
		max-width: 250px;
		margin: 0 auto 10px;
	}
	
	/* Controls demo grid */
	.controls-demo-grid .form-container {
		width: 100%;
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.top-nav {
		height: 50px;
		padding: 0 10px;
		line-height: 50px;
	}

	.sidebar {
		top: 50px;
		height: calc(100vh - 50px);
	}

	.main-content {
		margin-top: 50px;
		padding: 15px 10px;
	}

	.logo {
		font-size: 20px;
		margin-right: 20px;
	}

	.content-card {
		padding: 20px 15px;
		border-radius: 15px;
	}

	.content-title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.content-text {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.feature-card {
		padding: 20px 15px;
	}

	.feature-icon {
		font-size: 32px;
		margin-bottom: 12px;
	}

	.feature-title {
		font-size: 16px;
	}

	.sidebar-toggle {
		width: 35px;
		height: 35px;
		top: 15px;
		right: 15px;
		line-height: 35px;
	}

	/* Form mobile adjustments */
	.form-container {
		padding: 15px;
		margin: 10px;
	}

	.form-input,
	.form-textarea,
	.form-select,
	.multiselect-input,
	.input-button-input {
		padding: 12px 15px;
		font-size: 16px; /* Prevents zoom on iOS */
	}

	.slider-current,
	.multi-slider-current {
		font-size: 14px;
	}

	/* Table mobile adjustments */
	.data-table th,
	.data-table td {
		padding: 6px 4px;
		font-size: 11px;
	}

	.user-cell {
		display: block;
	}
	
	.user-cell .user-avatar {
		display: block;
		margin: 0 auto 4px;
	}
	
	.user-cell span {
		display: block;
		text-align: center;
	}

	.action-buttons {
		text-align: center;
	}
	
	.action-btn {
		display: block;
		margin: 2px auto;
	}

	.progress-bar {
		width: 60px;
		height: 14px;
	}

	/* Filter mobile adjustments */
	.boxed-internal-container,
	.companies-filters {
		padding: 20px 15px;
	}

	.companies-filter-input,
	.companies-filter-select {
		padding: 10px;
		font-size: 16px; /* Prevents zoom on iOS */
	}

	.pagination-btn {
		padding: 6px 10px;
		font-size: 12px;
	}

	.pagination-page {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 31px;
	}

	/* Framework actions mobile */
	.framework-actions {
		padding: 25px 15px;
		margin-top: 20px;
	}

	.framework-actions .demo-title {
		font-size: 20px;
	}

	.framework-actions .content-text {
		font-size: 13px;
	}
}

/* Landscape tablets */
@media (max-width: 1024px) and (orientation: landscape) {
	.sidebar {
		width: 200px;
	}

	.main-content {
		margin-left: 200px;
	}

	.sidebar.collapsed {
		width: 60px;
	}

	.main-content.expanded {
		margin-left: 60px;
	}
	
	.feature-card {
		width: calc(33.33% - 13px);
		margin-right: 20px;
	}
	
	.feature-card:nth-child(2n) {
		margin-right: 20px;
	}
	
	.feature-card:nth-child(3n) {
		margin-right: 0;
	}
}

/* Broadcast Page Specific Styles */
.broadcast-tabs .tabs-nav {
	background: rgba(6, 84, 196, 0.05);
	border-bottom: 2px solid rgba(6, 84, 196, 0.1);
	padding: 0;
}

.broadcast-tabs .tab-button {
	min-width: 140px;
	padding: 18px 20px;
	font-size: 13px;
}

.broadcast-tabs .tab-icon {
	font-size: 18px;
	display: block;
	margin-bottom: 5px;
}

.broadcast-form-container {
	padding: 30px 0;
}

.broadcast-section {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(6, 84, 196, 0.1);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 25px;
}

.section-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	display: block;
}

.section-description {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* Stream Type Selector */
.stream-type-selector {
	display: block;
	margin: 20px 0;
}

.stream-option {
	display: inline-block;
	width: 180px;
	padding: 20px;
	border: 2px solid rgba(6, 84, 196, 0.2);
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	margin-right: 20px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.5);
}

.stream-option:hover {
	border-color: #0654c4;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(6, 84, 196, 0.2);
}

.stream-option.selected {
	border-color: #0654c4;
	background: linear-gradient(135deg, rgba(6, 84, 196, 0.1), rgba(30, 115, 190, 0.1));
}

.stream-icon {
	font-size: 32px;
	display: block;
	margin-bottom: 10px;
	color: #0654c4;
}

.stream-text {
	font-weight: 500;
	color: #333;
}

/* Status Radio Group */
.status-group {
	display: block;
}

.status-group .radio-item {
	margin-right: 20px;
}

.closed-status {
	background: rgba(255, 193, 7, 0.1);
	color: #ffc107;
}

/* Collapsible Section */
.collapsible .section-title {
	cursor: pointer;
	position: relative;
}

.collapse-icon {
	float: right;
	transition: transform 0.3s ease;
}

/* DateTime Group */
.datetime-group {
	display: block;
}

.datetime-input {
	display: inline-block;
	width: 150px;
	margin-right: 10px;
}

.datetime-input[type="date"] {
    width: 160px;
}

.time-select {
	display: inline-block;
	width: 140px;
	margin-right: 10px;
}

.timezone-select {
	display: inline-block;
	width: 160px;
}

/* Switch Wrapper Extensions */
.switch-wrapper {
	margin: 10px 0;
}

.switch-description {
	display: block;
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.5;
}

/* Upload Zone Extensions */
.holding-slide-upload,
.background-image-upload,
.logo-upload {
	margin-top: 10px;
}

/* Social Links */
.social-links-container .form-group {
	margin-bottom: 20px;
}

/* Color Picker */
.color-picker-wrapper {
	display: block;
	margin-top: 10px;
}

.color-picker {
	width: 50px;
	height: 40px;
	border: 2px solid rgba(6, 84, 196, 0.2);
	border-radius: 8px;
	cursor: pointer;
	vertical-align: middle;
	margin-right: 15px;
}

.color-preview {
	display: inline-block;
	width: 100px;
	height: 40px;
	border-radius: 8px;
	vertical-align: middle;
}

/* File Attachment */
.file-attachment-container {
	display: block;
}

.attachment-details {
	margin-top: 15px;
	display: block;
}

.attachment-details .form-input {
	display: inline-block;
	width: calc(100% - 100px);
	margin-right: 10px;
}

.attachment-details .demo-btn {
	display: inline-block;
	width: 80px;
}

/* Email List */
.email-list {
	min-height: 100px;
}

.form-helper-text {
	font-size: 12px;
	color: #666;
	margin-top: 5px;
}

/* Slides Preview */
/*.slides-preview-section {
	margin-top: 30px;
}

.slides-preview-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	min-height: 120px;
}

.slides-preview-container:empty::before {
	content: "No slides uploaded yet. Use the drop zone above to add slides.";
	color: #6c757d;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}

.slide-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 120px;
	position: relative;
	background: white;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slide-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.slide-number {
	font-weight: 600;
	color: #333;
	font-size: 14px;
	margin-bottom: 8px;
	order: 1;
}

.slide-thumbnail {
	width: 100px;
	height: 75px;
	background: #f0f0f0;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid #e9ecef;
	order: 2;
	margin-bottom: 8px;
}

.slide-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-actions {
	display: flex;
	gap: 4px;
	order: 3;
}

.slide-action {
	background: rgba(6, 84, 196, 0.1);
	border: none;
	border-radius: 4px;
	padding: 4px 6px;
	cursor: pointer;
	color: #0654c4;
	font-size: 14px;
	line-height: 1;
	transition: all 0.2s ease;
	min-width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide-action:hover {
	background: rgba(6, 84, 196, 0.2);
	transform: scale(1.1);
}

.slide-action.broadcastSlideImage_delete {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}

.slide-action.broadcastSlideImage_delete:hover {
	background: rgba(220, 53, 69, 0.2);
}
*/

/* Responsive adjustments */
@media (max-width: 768px) {
	.slides-preview-container {
		gap: 10px;
		padding: 15px;
	}
	
	.slide-item {
		width: 100px;
	}
	
	.slide-thumbnail {
		width: 80px;
		height: 60px;
	}
	
	.slide-number {
		font-size: 12px;
	}
	
	.slide-action {
		font-size: 12px;
		min-width: 20px;
		height: 20px;
		padding: 2px 4px;
	}
}

/* Poll Container */
.poll-container {
	background: rgba(205, 255, 255, 0.5);
	border: 1px solid rgba(6, 84, 196, 0.1);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.poll-header {
	display: block;
	margin-bottom: 20px;
}

.poll-header h4 {
	display: inline-block;
	margin: 0;
	font-size: 18px;
	color: #333;
}

.poll-header .demo-btn {
	float: right;
}

.poll-status {
	display: block;
	margin: 20px 0;
}

.poll-status span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	font-weight: 500;
}

.poll-status .switch {
	vertical-align: middle;
	margin-right: 20px;
}

.status-text {
	margin-left: 20px;
}

.poll-options {
	margin-top: 20px;
}

.poll-option-item {
	display: block;
	margin-bottom: 15px;
}

.poll-option-item .form-input {
	display: inline-block;
	width: calc(100% - 50px);
	margin-right: 10px;
}

.option-remove {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: rgba(220, 53, 69, 0.1);
	border: none;
	border-radius: 6px;
	color: #dc3545;
	cursor: pointer;
	font-size: 16px;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.option-remove:hover {
	background: rgba(220, 53, 69, 0.2);
}

.poll-actions {
	margin-top: 20px;
	text-align: right;
}

.poll-actions .demo-btn {
	margin-left: 10px;
}

/* Registration Fields */
.registration-fields .form-group {
	margin-bottom: 15px;
}

/* Live Broadcast Specific */
.live-broadcast-header {
	margin-bottom: 30px;
}

.live-status {
	display: inline-block;
	margin-left: 20px;
	padding: 8px 16px;
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
}

.live-preview-container {
	background: #f5f5f5;
	border-radius: 12px;
	padding: 30px;
	min-height: 400px;
	margin-bottom: 30px;
	text-align: center;
}

.no-slides-message {
	background: rgba(255, 193, 7, 0.1);
	color: #ffc107;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-weight: 500;
}

.slide-preview-placeholder {
	margin-top: 20px;
}

.slide-preview-placeholder img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.broadcast-controls {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(6, 84, 196, 0.1);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 25px;
}

.timer-display {
	text-align: center;
	margin: 30px 0;
}

.timer {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 20px;
}

.timer-controls {
	display: block;
}

.timer-controls .demo-btn {
	margin: 0 5px;
}

.presenters-section {
	background: rgba(6, 84, 196, 0.05);
	border-radius: 8px;
	padding: 20px;
	margin-top: 10px;
}

.no-presenters-message {
	background: rgba(255, 193, 7, 0.1);
	color: #ffc107;
	padding: 15px;
	border-radius: 8px;
	font-size: 13px;
	text-align: center;
}

/* Utility Classes */
.danger {
	background: rgba(220, 53, 69, 0.1) !important;
	color: #dc3545 !important;
}

.small {
	padding: 8px 16px !important;
	font-size: 13px !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.broadcast-column-left,
	.broadcast-column-right {
		width: 100%;
		display: block;
		margin: 0 0 20px 0;
	}

	.stream-option {
		width: calc(50% - 10px);
		margin-right: 10px;
		margin-bottom: 10px;
	}
}

@media (max-width: 768px) {
	.broadcast-tabs .tab-button {
		min-width: 100px;
		padding: 15px 10px;
		font-size: 12px;
	}

	.broadcast-tabs .tab-icon {
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 0;
	}

	.datetime-input,
	.time-select,
	.timezone-select {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}

	.stream-option {
		width: 100%;
		margin-right: 0;
	}

	.slide-item {
		width: calc(50% - 10px);
		margin-right: 10px;
	}
}

/* ========================================
   Registration Form
   ======================================== */
     .reg-form-ui-container {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 14px;
      line-height: 1.5;
      color: #333;
    }

    .reg-form-ui-container * {
      box-sizing: border-box;
    }

    .reg-form-ui-container h3,
    .reg-form-ui-container h5 {
      margin: 0 0 20px 0;
      color: #2c3e50;
    }

    .reg-form-ui-field-block {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .reg-form-ui-controls button {
      margin-right: 5px;
    }

    .reg-form-ui-label {
      font-weight: 500;
      display: block;
      margin-bottom: 5px;
      color: #555;
    }

    .reg-form-ui-preview input,
    .reg-form-ui-preview select {
      background-color: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 8px 12px;
      width: 100%;
    }

    .reg-form-ui-section-title {
      margin-top: 30px;
      margin-bottom: 20px;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
      font-weight: 600;
      color: #2c3e50;
    }

    .reg-form-ui-rule-list,
    .reg-form-ui-options-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-height: 150px;
      overflow-y: auto;
    }

    .reg-form-ui-options-list {
      max-height: 200px;
    }

    .reg-form-ui-select,
    .reg-form-ui-input {
      background-color: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 8px 12px;
      width: 100%;
      font-size: 14px;
      transition: border-color 0.2s;
    }

    .reg-form-ui-select:focus,
    .reg-form-ui-input:focus {
      outline: none;
      border-color: #4CAF50;
    }

    /* Custom checkbox styles */
    .reg-form-ui-checkbox-wrapper {
      position: relative;
      margin-top: 10px;
    }

    .reg-form-ui-checkbox-square {
      width: 20px;
      height: 20px;
      border: 2px solid #ddd;
      border-radius: 4px;
      background-color: #fff;
      display: inline-block;
      position: relative;
      vertical-align: middle;
      cursor: pointer;
      transition: all 0.2s;
    }

    input[type="checkbox"].reg-form-ui-field-required:checked + .reg-form-ui-checkbox-square {
      background-color: #4CAF50;
      border-color: #4CAF50;
    }

    input[type="checkbox"].reg-form-ui-field-required:checked + .reg-form-ui-checkbox-square::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 6px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      transform: rotate(45deg);
    }

    input[type="checkbox"].reg-form-ui-field-required {
      display: none;
    }

    .reg-form-ui-preview-field {
      position: relative;
      padding-right: 30px;
      margin-bottom: 15px;
    }

    .reg-form-ui-remove-preview-field {
      position: absolute;
      right: 0;
      top: 0;
      padding: 2px 8px;
      font-size: 12px;
    }

    .reg-form-ui-options-section {
      display: none;
      margin-top: 20px;
      padding: 15px;
      background-color: #f8f9fa;
      border-radius: 8px;
    }

    .reg-form-ui-length-fields {
      transition: opacity 0.3s ease;
    }

    .reg-form-ui-length-fields.reg-form-ui-hidden {
      opacity: 0.3;
      pointer-events: none;
    }

    /* Button styles */
    .reg-form-ui-btn {
      display: inline-block;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      white-space: nowrap;
      vertical-align: middle;
      cursor: pointer;
      border: 1px solid transparent;
      border-radius: 6px;
      transition: all 0.2s;
      background-color: #f0f0f0;
      color: #333;
      text-decoration: none;
    }

    .reg-form-ui-btn:hover {
      opacity: 0.8;
    }

    .reg-form-ui-btn-lg {
      padding: 12px 24px;
      font-size: 16px;
    }

    .reg-form-ui-btn-sm {
      padding: 4px 8px;
      font-size: 12px;
    }

    .reg-form-ui-btn-success {
      background-color: #4CAF50;
      color: white;
    }

    .reg-form-ui-btn-primary {
      background-color: #2196F3;
      color: white;
    }

    .reg-form-ui-btn-info {
      background-color: #00BCD4;
      color: white;
    }

    .reg-form-ui-btn-outline-secondary {
      background-color: transparent;
      color: #6c757d;
      border-color: #6c757d;
    }

    .reg-form-ui-btn-outline-success {
      background-color: transparent;
      color: #4CAF50;
      border-color: #4CAF50;
    }

    .reg-form-ui-btn-outline-danger {
      background-color: transparent;
      color: #f44336;
      border-color: #f44336;
    }

    /* Form styles */
    .reg-form-ui-form-label {
      display: inline-block;
      margin-bottom: 5px;
      font-weight: 500;
    }

    .reg-form-ui-form-check {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .reg-form-ui-form-check-label {
      margin: 0;
      cursor: pointer;
    }

    /* List group styles */
    .reg-form-ui-list-group-item {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      margin-bottom: 5px;
      background-color: #fff;
      border: 1px solid rgba(0,0,0,.125);
      border-radius: 4px;
    }

    /* Utility classes specific to reg-form-ui */
    .reg-form-ui-text-center {
      text-align: center;
    }

    .reg-form-ui-text-end {
      text-align: right;
    }

    .reg-form-ui-text-muted {
      color: #6c757d;
    }

    .reg-form-ui-mt-1 { margin-top: 0.25rem; }
    .reg-form-ui-mt-2 { margin-top: 0.5rem; }
    .reg-form-ui-mt-3 { margin-top: 1rem; }
    .reg-form-ui-mt-4 { margin-top: 1.5rem; }
    .reg-form-ui-mt-5 { margin-top: 3rem; }
    .reg-form-ui-mb-3 { margin-bottom: 1rem; }
    .reg-form-ui-me-2 { margin-right: 0.5rem; }
    .reg-form-ui-d-block { display: block; }
    .reg-form-ui-d-flex { display: flex; }
    .reg-form-ui-justify-content-between { justify-content: space-between; }
    .reg-form-ui-align-items-center { align-items: center; }
    .reg-form-ui-align-items-end { align-items: flex-end; }
    .reg-form-ui-fw-bold { font-weight: bold; }
    .reg-form-ui-fw-500 { font-weight: 500; }
    .reg-form-ui-fw-600 { font-weight: 600; }
    .reg-form-ui-w-100 { width: 100%; }
    .reg-form-ui-g-2 > * { margin: 0 0.5rem 0.5rem 0; }
    .reg-form-ui-m-0 { margin: 0; }
    
    .reg-form-ui-border {
      border: 1px solid #dee2e6;
    }

    .reg-form-ui-p-4 {
      padding: 1.5rem;
    }

    .reg-form-ui-bg-white {
      background-color: #fff;
    }

    .reg-form-ui-rounded {
      border-radius: 0.25rem;
    }

    .reg-form-ui-shadow-sm {
      box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    }

    /* Alert styles */
    .reg-form-ui-alert {
      position: relative;
      padding: 12px 20px;
      margin-bottom: 1rem;
      border: 1px solid transparent;
      border-radius: 4px;
    }

    .reg-form-ui-alert-success {
      color: #155724;
      background-color: #d4edda;
      border-color: #c3e6cb;
    }

    .reg-form-ui-alert-info {
      color: #0c5460;
      background-color: #d1ecf1;
      border-color: #bee5eb;
    }

    /* Modal styles */
    .reg-form-ui-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1050;
    }

    .reg-form-ui-modal-content {
      background-color: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow: auto;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .reg-form-ui-modal-header {
      padding: 20px;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .reg-form-ui-modal-body {
      padding: 20px;
    }

    .reg-form-ui-modal-footer {
      padding: 20px;
      border-top: 1px solid #e0e0e0;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .reg-form-ui-close-modal {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #999;
    }

    .reg-form-ui-textarea {
      width: 100%;
      min-height: 100px;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: monospace;
      font-size: 12px;
      resize: vertical;
    }

    /* Preview form specific styles */
    .reg-form-ui-preview {
      background-color: #fff;
      border: 1px solid #dee2e6;
      border-radius: 0.25rem;
      padding: 1.5rem;
      box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
      margin-top: 1rem;
		width: 100%;
	  height: 400px;
	  overflow-y: auto;      
	  overflow-x: hidden;    
	  border: 1px solid #ddd; 
	  background: #fafafa;    
	  border-radius: 6px;     
	  padding: 15px;          
	  box-sizing: border-box; 
    }

	/* Checkbox layout in preview */
	.reg-form-ui-preview-field.reg-form-ui-form-check {
	  display: flex;
	  align-items: center;
	  justify-content: flex-start; /* align left */
	  gap: 8px; /* space between label, checkbox, and remove button */
	  text-align: left;
	}

	/* Put label on the left, checkbox next to it */
	.reg-form-ui-form-check-label {
	  order: 1; /* label first */
	  margin-right: 8px;
	}

	/* Checkbox after label */
	.reg-form-ui-checkbox-square {
	  order: 2; /* checkbox second */
	  margin-right: 12px;
	}

	/* Remove button stays at far right */
	.reg-form-ui-remove-preview-field {
	  order: 3;
	  margin-left: auto; /* push it to the right edge */
	}
/* ========================================
  Companies - Add Company
   ======================================== */
/* Minimal CSS for URL management */
.company-urls-container {
    padding: 15px;
    background: rgba(6, 84, 196, 0.05);
    border-radius: 8px;
}

.url-item {
    margin-bottom: 10px;
}

.url-item:last-child {
    margin-bottom: 15px;
}

.url-remove-btn {
    background: linear-gradient(135deg, #dc3545, #e83e8c) !important;
    width: 100px !important;
}

.url-remove-btn:hover {
    background: linear-gradient(135deg, #c82333, #dc3545) !important;
}

#add-url-btn {
    width: 100%;
    margin-top: 10px;
}

/* Update color preview display */
.color-picker-wrapper .color-preview {
    width: 100px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

/********************************************/
/**************  ALERT   ********************/
/********************************************/

.alert-block {
    top: 10px;
    right: 0px;
    position: fixed;
    width: 0;
    overflow: visible;
    z-index: 1982;
}

.alert-block .message {
    right: -320px;
    position: relative;
    width: 260px;
    max-height: 0;
    padding: 0;
    opacity: 0;
    margin: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.alert-block .message.visible {
    opacity: 1;
    max-height: 100%;
    padding: 15px;
    margin-top: 10px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-block .message.success {
    background: rgba(91, 189, 114, 0.95);
}

.alert-block .message.error {
    background: rgba(217, 92, 92, 0.95);
}

.alert-block .message.warning {
    background: rgba(252, 248, 215, 0.95);
}

/*********************************/
/********** MODAL WINDOW *********/
/*********************************/
#G_modalWindow {
	display:none;
	position:fixed;
	top:calc(50vh - 125px);
	left: 50%;
	margin-left: -180px;
	height:250px;
	width:360px;
	z-index:999999;
	background:white;
	border:1px solid #777777;
	border-radius:10px;
}

#G_modalWindowHeadline {
	display:block;
	width:100%;
	background:red;
	height:60px;
	font-size:28px;
	color:black;
	text-align:center;
	padding-top:8px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}

#G_modalWindowContent {
	display:block;
	width:100%;
	margin-top:10px;
	font-size:16px;
	color:#444444;
	padding:5%;
}

#G_modalWindow_YesBtn {
	width:100px;
}

#G_modalWindow_NoBtn {
	width:100px;
}

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