/* Network Access Fix - Force styles to apply */
body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #0A0A0F !important;
    color: rgba(255, 255, 255, 0.87) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ensure dashboard container is visible */
.dashboard-container {
    display: flex !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    background: #0A0A0F !important;
}

/* Force navigation sidebar to show */
.navigation-sidebar {
    display: flex !important;
    flex-direction: column !important;
    width: 260px !important;
    background: #000000 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Force main content to show */
.main-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: transparent !important;
}