.camera-view {
    height: 300px;
    background-color: #333;
    display: flex;
    flex-direction: column;
}

.toolbar {
    background-color: #444;
    border-bottom: 2px solid #555;
    padding: 10px;
}

.btn {
    padding: 10px 20px;
    background-color: #4F46E5;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #6366F1;
}

.btn:disabled {
    background-color: #888;
    cursor: not-allowed;
}

.media-display {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: black;
    overflow: hidden;
}

.event-list-item {
    background-color: #f3f4f6; /* bg-gray-100 */
    transition: background-color 0.3s ease, border 0.3s ease;
}

.event-list-item:hover {
    background-color: #e5e7eb; /* bg-gray-200 */
}

.selected-event {
    border: 1px solid #2563eb; /* Tailwind Blue-600 */
    background-color: #f0f9ff; /* Light blue background for selected */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.selected-event:hover {
    background-color: #f0f9ff; /* Same Light blue background for selected */
}


/* DARK THEME */
body.dark .event-list-item {
    background-color: #2d3748; /* Tailwind Gray-800, dark base background */
    color: #cbd5e1; /* Tailwind Gray-400, lighter text for regular items */
    transition: background-color 0.3s ease, border 0.3s ease;
}

body.dark .event-list-item:hover {
    background-color: #4a5568; /* Tailwind Gray-700, slightly lighter for hover */
}

body.dark .selected-event {
    border: 1px solid #3b82f6; /* Tailwind Blue-500 */
    background-color: #1e40af; /* Tailwind Blue-800, rich blue background */
    color: #ffffff; /* White text for maximum contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Stronger shadow for dark mode */
    transition: background-color 0.3s ease, border 0.3s ease;
}

body.dark .selected-event:hover {
    background-color: #1e40af; /* Same as selected-event for consistency */
}

/* Sticky button styling */
.sticky-button {
    position: fixed;
    top: 92px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.sticky-button:hover {
    background-color: #f3f3f3;
}

.sticky-button i {
    margin-right: 8px;
}