/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    overflow: hidden;
}

/* Loading Overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
}

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

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(74, 144, 226, 0.3);
    border-top: 3px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.loading-content p {
    font-size: 14px;
    color: #e0e0e0;
}

#loadingOverlay.hidden {
    display: none;
}

/* Cesium Container */
#cesiumContainer {
    width: 100%;
    height: 100vh;
    position: relative;
    transition: margin-right 0.3s ease;
}

#cesiumContainer.sidebar-open {
    margin-right: 350px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Top Menu Bar */
.top-menu {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    gap: 20px;
}

.menu-left,
.menu-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-button {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-button:hover {
    background: rgba(60, 60, 60, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.menu-button.active {
    background: rgba(74, 144, 226, 0.9);
    border-color: rgba(74, 144, 226, 1);
}

.menu-button i {
    font-size: 16px;
}

/* View Toggle */
.view-toggle {
    display: flex;
    background: rgba(42, 42, 42, 0.95);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.view-toggle-btn {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.view-toggle-btn.active {
    background: rgba(74, 144, 226, 0.9);
}

.view-toggle-btn:hover:not(.active) {
    background: rgba(60, 60, 60, 0.95);
}

.view-toggle-btn i {
    font-size: 16px;
}

/* Toolbar Buttons */
.cesium-viewer-toolbar {
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toolbar-button {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: 160px;
}

.toolbar-button:hover {
    background: rgba(60, 60, 60, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toolbar-button.active {
    background: rgba(74, 144, 226, 0.9);
    border-color: rgba(74, 144, 226, 1);
}

.toolbar-button i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

/* Left Navigation */
.left-navigation {
    position: fixed;
    top: 70px;
    left: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(42, 42, 42, 0.95);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Left Navigation Scrollbar */
.left-navigation::-webkit-scrollbar {
    width: 6px;
}

.left-navigation::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 5px 0;
}

.left-navigation::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(74, 144, 226, 0.8), rgba(74, 144, 226, 0.6));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.left-navigation::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(74, 144, 226, 1), rgba(74, 144, 226, 0.8));
}

/* Firefox scrollbar */
.left-navigation {
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 144, 226, 0.8) rgba(255, 255, 255, 0.1);
}

.nav-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(60, 60, 60, 0.95);
    transform: scale(1.05);
}

.nav-item.active {
    background: rgba(74, 144, 226, 0.9);
}

.nav-item i {
    font-size: 16px;
}

.nav-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

/* Dynamic Sidebar */
.app-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(15px);
    transition: width 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.app-sidebar.active {
    width: 350px;
}

.app-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(50, 50, 50, 0.5);
}

.app-sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.app-sidebar-content {
    padding: 20px;
    color: white;
}

/* Sidebar Sections */
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header i {
    color: #4a90e2;
    font-size: 16px;
}

.section-header span {
    font-weight: 600;
    font-size: 16px;
}

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

.control-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

.control-btn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.control-btn.primary {
    background: #4a90e2;
    color: white;
}

.control-btn.primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.control-btn.success {
    background: #28a745;
    color: white;
}

.control-btn.success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.control-btn i {
    font-size: 16px;
}

/* Weather Cards */
.weather-section {
    padding: 0;
}

.weather-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.weather-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.weather-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.weather-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 8px;
}

.weather-card-header i {
    color: #4a90e2;
}

.weather-card-value {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    font-size: 18px;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #e0e0e0;
    margin-top: 2px;
}

/* Legend Styles */
.legend-section {
    margin-bottom: 20px;
}

.legend-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-item span {
    color: #e0e0e0;
    font-size: 14px;
}

.legend-item i {
    width: 20px;
    text-align: center;
}

/* Entity Buttons Grid */
.entity-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.entity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 10px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
   gap: 8px;
   font-size: 12px;
   transition: all 0.3s ease;
}

.entity-btn:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: translateY(-2px);
}

.entity-btn i {
   font-size: 20px;
   color: #4a90e2;
}

/* Asset Buttons Grid */
.asset-buttons-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 8px;
   margin-bottom: 20px;
}

.asset-buttons-grid .control-btn {
   margin-bottom: 0;
   padding: 10px 8px;
   font-size: 12px;
}

/* Export Buttons Grid */
.export-buttons-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
}

.export-buttons-grid .control-btn {
   margin-bottom: 0;
}

/* Upload Area */
.upload-area {
   border: 2px dashed rgba(255, 255, 255, 0.3);
   border-radius: 8px;
   padding: 30px 20px;
   text-align: center;
   cursor: pointer;
   transition: all 0.3s ease;
   background: rgba(255, 255, 255, 0.05);
}

.upload-area:hover {
   border-color: rgba(74, 144, 226, 0.5);
   background: rgba(74, 144, 226, 0.1);
}

.upload-area i {
   font-size: 24px;
   color: #4a90e2;
   margin-bottom: 10px;
   display: block;
}

.upload-area p {
   color: white;
   margin-bottom: 5px;
   font-weight: 500;
}

.upload-area small {
   color: #e0e0e0;
   font-size: 12px;
}

/* Entity List */
.entity-list {
   background: rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   padding: 15px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   min-height: 100px;
   color: #e0e0e0;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="datetime-local"],
textarea,
select {
   width: 100%;
   background: white;
   color: #333 !important;
   border: 1px solid #ddd;
   border-radius: 6px;
   padding: 10px 12px;
   font-size: 14px;
   outline: none;
   transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="datetime-local"]:focus,
textarea:focus,
select:focus {
   border-color: #4a90e2;
   box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Form Control Updates */
.form-control {
   width: 100%;
   background: white !important;
   color: #333 !important;
   border: 1px solid #ddd;
   border-radius: 6px;
   padding: 10px 12px;
   font-size: 14px;
   outline: none;
   transition: all 0.3s ease;
}

.form-control:focus {
   border-color: #4a90e2;
   box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Fix dropdown colors for dark backgrounds */
#cam-feed-picker,
#unitDropdown,
.customUnitDropDown {
   background: white !important;
   color: #333 !important;
   border: 1px solid #ddd;
}

#cam-feed-picker option,
#unitDropdown option,
.customUnitDropDown option {
   background: white !important;
   color: #333 !important;
}

.speed-slider {
   width: 100%;
   margin: 10px 0;
}

.speed-value {
   display: inline-block;
   margin-left: 10px;
   font-weight: 600;
   color: #4a90e2;
}

.time-input {
   margin: 5px 0;
}

/* Layer Controls */
.layers-section {
   padding: 0;
}

.layer-item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 12px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-item:last-child {
   border-bottom: none;
}

.layer-item input[type="checkbox"] {
   width: auto;
   margin: 0;
}

.layer-item label {
   flex: 1;
   margin: 0;
   cursor: pointer;
   font-weight: 400;
}

/* Custom Dropdown */
.custom-dropdown {
   position: relative;
   display: inline-block;
   width: 100%;
}

.dropdown-toggle {
   width: 100%;
   padding: 12px 16px;
   background: white;
   border: 1px solid #ddd;
   border-radius: 8px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 14px;
   transition: all 0.3s ease;
   color: #333;
}

.dropdown-toggle:hover {
   border-color: #4a90e2;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
   margin-left: auto;
   transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
   transform: rotate(180deg);
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: white;
   border: 1px solid #ddd;
   border-radius: 8px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
   z-index: 1000;
   max-height: 300px;
   overflow-y: auto;
   display: none;
}

.dropdown-menu.show {
   display: block;
}

.dropdown-search {
   padding: 12px;
   border-bottom: 1px solid #eee;
   display: flex;
   align-items: center;
   gap: 10px;
}

.dropdown-search input {
   flex: 1;
   border: none;
   outline: none;
   font-size: 14px;
   padding: 0;
}

.dropdown-search i {
   color: #666;
}

.dropdown-option {
   padding: 12px 16px;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 10px;
   transition: background-color 0.2s ease;
   color: #333;
}

.dropdown-option:hover {
   background: #f8f9fa;
}

.dropdown-option i {
   color: #666;
   width: 16px;
   text-align: center;
}

/* Animation Controls Panel */
#controlsPanel {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 1000;
   background: rgba(42, 42, 42, 0.95);
   border-radius: 12px;
   padding: 20px;
   backdrop-filter: blur(15px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   color: white;
   min-width: 300px;
   display: none;
}

#controlsPanel.show {
   display: block;
}

.panel-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 15px;
}

#controlsPanel h2 {
   margin: 0;
   font-size: 18px;
}

.zoom-to-routes-button,
.cesium-butt {
   width: 100%;
   padding: 10px 15px;
   background: #4a90e2;
   color: white;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   margin-bottom: 10px;
   transition: all 0.3s ease;
}

.zoom-to-routes-button:hover,
.cesium-butt:hover {
   background: #357abd;
   transform: translateY(-2px);
}

/* Modal Styles */
.modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 2000;
   backdrop-filter: blur(5px);
}

.modal.show {
   display: flex;
   align-items: center;
   justify-content: center;
}

.modal-content {
   background: white;
   border-radius: 12px;
   width: 90%;
   max-width: 500px;
   max-height: 90vh;
   overflow-y: auto;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.modal-header h3 {
   margin: 0;
   color: #333;
}

.modal-body {
   padding: 20px;
}

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

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

.form-group label {
   display: block;
   margin-bottom: 8px;
   font-weight: 500;
   color: #333;
}

.btn {
   padding: 10px 20px;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 14px;
   font-weight: 500;
   transition: all 0.3s ease;
}

.btn-primary {
   background: #4a90e2;
   color: white;
}

.btn-primary:hover {
   background: #357abd;
}

.btn-secondary {
   background: #6c757d;
   color: white;
}

.btn-secondary:hover {
   background: #5a6268;
}

/* Icon Special */
.icon-special {
   width: 16px;
   height: 16px;
   filter: invert(1);
}

/* Switch Style */
.switch {
   position: relative;
   display: inline-block;
   width: 60px;
   height: 34px;
}

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

.slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: #ccc;
   transition: .4s;
}

.slider:before {
   position: absolute;
   content: "";
   height: 26px;
   width: 26px;
   left: 4px;
   bottom: 4px;
   background-color: white;
   transition: .4s;
}

input:checked + .slider {
   background-color: #4a90e2;
}

input:focus + .slider {
   box-shadow: 0 0 1px #4a90e2;
}

input:checked + .slider:before {
   transform: translateX(26px);
}

.slider.round {
   border-radius: 34px;
}

.slider.round:before {
   border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
   .app-sidebar {
       width: 100%;
       transform: translateX(100%);
       transition: transform 0.3s ease;
   }
   
   .app-sidebar.active {
       transform: translateX(0);
       width: 100%;
   }
   
   #cesiumContainer.sidebar-open {
       margin-right: 0;
   }
   
   .top-menu {
       flex-direction: column;
       gap: 10px;
       left: 5px;
       right: 5px;
   }
   
   .menu-left,
   .menu-right {
       width: 100%;
       justify-content: center;
       flex-wrap: wrap;
   }
   
   .menu-center {
       width: 100%;
   }
   
   .cesium-viewer-toolbar {
       top: 120px;
       right: 5px;
   }
   
   .toolbar-button {
       padding: 10px 12px;
       font-size: 12px;
       min-width: 140px;
   }
   
   .left-navigation {
       top: 120px;
       left: 5px;
   }
   
   .nav-item {
       width: 44px;
       height: 44px;
   }
   
   .dropdown-menu {
       position: fixed;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 90%;
       max-width: 400px;
   }
   
   #controlsPanel {
       position: fixed;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 90%;
       max-width: 400px;
   }
}

@media (max-width: 480px) {
   .menu-button {
       padding: 8px 12px;
       font-size: 12px;
   }
   
   .menu-button span {
       display: none;
   }
   
   .toolbar-button span {
       display: none;
   }
   
   .toolbar-button {
       min-width: 50px;
       justify-content: center;
   }
   
   .control-group {
       margin-bottom: 15px;
   }
   
   .control-btn {
       padding: 10px 12px;
       font-size: 12px;
   }
   
   .app-sidebar-content {
       padding: 15px;
   }
   
   .modal-content {
       width: 95%;
       margin: 20px;
   }
   
   .modal-header,
   .modal-body,
   .modal-footer {
       padding: 15px;
   }
   
   .stats-grid {
       grid-template-columns: 1fr;
   }
   
   .entity-buttons-grid,
   .asset-buttons-grid,
   .export-buttons-grid {
       grid-template-columns: 1fr;
   }
   
   .stat-card {
       padding: 12px;
   }
   
   .stat-icon {
       width: 35px;
       height: 35px;
       font-size: 16px;
   }
   
   .stat-value {
       font-size: 18px;
   }
}

/* Additional Cesium Overrides */
.cesium-widget-credits {
   display: none !important;
}

.cesium-viewer-bottom {
   display: none !important;
}

.cesium-viewer-timelineContainer {
   display: none !important;
}

.cesium-viewer-animationContainer {
   display: none !important;
}

.cesium-viewer-fullscreenContainer {
   display: none !important;
}

.cesium-viewer-vrContainer {
   display: none !important;
}

.cesium-viewer-geocoderContainer {
   display: none !important;
}

.cesium-viewer-homeButton {
   display: none !important;
}

.cesium-viewer-sceneModePicker {
   display: none !important;
}

.cesium-viewer-projectionPicker {
   display: none !important;
}

.cesium-viewer-baseLayerPicker {
   display: none !important;
}

.cesium-viewer-navigationHelpButton {
   display: none !important;
}

.cesium-viewer-selectionIndicator {
   display: none !important;
}

.cesium-viewer-infoBox {
   display: none !important;
}