.companiesDropdowns_LoadingGif {
	display:none;
}

/* 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;
}

/* Match the actual generated HTML structure */
.slideContainer {
	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;
}

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

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

.broadcastSlideImage {
	width: 100px;
	height: 75px;
	object-fit: cover;
	border-radius: 6px;
	border: 2px solid #e9ecef;
	order: 2;
	margin-bottom: 8px;
	display: block;
}

/* Action buttons styling */
.broadcastSlideImage_moveUp,
.broadcastSlideImage_moveDown,
.broadcastSlideImage_delete {
	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: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 2px;
}

.broadcastSlideImage_moveUp:hover,
.broadcastSlideImage_moveDown:hover {
	background: rgba(6, 84, 196, 0.2);
	transform: scale(1.1);
}

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

.broadcastSlideImage_delete:hover {
	background: rgba(220, 53, 69, 0.2);
	transform: scale(1.1);
}

.arrow-hidden {
    visibility: hidden;
    pointer-events: none;
}

.arrow-visible {
    visibility: visible;
    pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.slides-preview-container {
		gap: 10px;
		padding: 15px;
	}
	
	.slideContainer {
		width: 100px;
	}
	
	.broadcastSlideImage {
		width: 80px;
		height: 60px;
	}
	
	.broadcastSlideCounter {
		font-size: 12px;
	}
	
	.broadcastSlideImage_moveUp,
	.broadcastSlideImage_moveDown,
	.broadcastSlideImage_delete {
		font-size: 12px;
		min-width: 20px;
		height: 20px;
		padding: 2px 4px;
	}
}

/***************************************
   TABLE SORTING STYLES
   Add this to your main.css or base.css
****************************************/

/* Sortable table headers */
.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.sortable:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Sort arrows default state - gray */
.sortable .sort-arrows {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.sortable:hover .sort-arrows {
    opacity: 0.6;
}

/* Active sort indicators */
.sortable.sort-asc .sort-down,
.sortable.sort-desc .sort-up {
    opacity: 0.3;
}

.sortable.sort-asc .sort-up,
.sortable.sort-desc .sort-down {
    opacity: 1;
    color: #007bff;
}

/* Optional: Add a subtle border or background to sorted column */
.sortable.sort-asc,
.sortable.sort-desc {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Ensure non-sortable columns don't have hover effect */
.no-sort {
    cursor: default;
}

.no-sort:hover {
    background-color: transparent;
}

/* Add this to your main.css or base.css file */

/* Multiselect Tags Container */
.multiselect-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 32px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.multiselect-tags:empty {
    display: none;
}

/* Individual Tag */
.multiselect-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.multiselect-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Tag Remove Button */
.multiselect-tag-remove {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.multiselect-tag-remove:hover {
    background: rgba(255,255,255,0.4);
    transform: rotate(90deg);
}

/* Hide the native multiple select appearance */
.multiselect-field {
    /* We'll keep the native select but style it better */
    height: auto;
    min-height: 38px;
    padding: 8px 12px;
}

/* Optional: Make the select look more integrated */
.multiselect-field[multiple] {
    border: 2px dashed #cbd5e0;
    background: #f7fafc;
}

.multiselect-field[multiple]:focus {
    border-color: #667eea;
    background: white;
}

/* Placeholder style when nothing selected */
.multiselect-field option:first-child {
    color: #999;
    font-style: italic;
}

.live-poll-btn {
	height:60px;
}

.live-poll-btn selected {
	background-color:red !important;
}