/**
 * BASE.CSS
 * Core styles, body configuration, scrollbar customization, and base fonts
 */

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Noto Sans KR', sans-serif;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Responsive Branching for Gantt/List View */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: block;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: grid; /* Use grid as per the layout in index.html */
    }
}
