@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,900");

body {
    font-family: "Poppins", sans-serif;
    background: #f0f4f5;
    font-size: 11px;
    color: #111e25;
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: 900; margin: 0; text-transform: uppercase; }
p { font-weight: 400; line-height: 1.3em; color: #334155; margin: 0; }
a, a:hover { color: inherit; text-decoration: none; }

.bg-aqua { background-color: #00f2fe !important; color: #111e25 !important; }
.text-aqua { color: #00f2fe !important; }
.bg-dark-custom { background-color: #111e25 !important; }

.border-flat { border: 2px solid #111e25 !important; }
.card-flat {
    border: 2px solid #111e25;
    background: #ffffff;
    box-shadow: 2px 2px 0px 0px #111e25;
}

.btn-flat-dark {
    background-color: #111e25; color: #00f2fe; font-weight: 900; font-size: 11px;
    border: 2px solid #111e25; box-shadow: 1px 1px 0px 0px #00f2fe;
    padding: 4px 8px;
}
.btn-flat-dark:hover { background-color: #1a2c37; color: #00f2fe; }

.btn-filter {
    background: #ffffff; color: #111e25; font-weight: 600; font-size: 10px;
    border: 1px solid #111e25; padding: 2px 8px; box-shadow: 1px 1px 0px 0px #111e25;
    margin-right: 4px; margin-bottom: 4px; cursor: pointer; text-transform: uppercase;
}
.btn-filter:hover, .btn-filter.active {
    background: #111e25; color: #00f2fe; box-shadow: 1px 1px 0px 0px #00f2fe;
}

/* LAYOUT SCREEN FRAME FIXED GILA */
.wrapper { display: flex; width: 100vw; height: 100vh; align-items: stretch; overflow: hidden; }

#sidebar { 
    min-width: 230px; max-width: 230px; 
    color: #fff; 
    border-right: 3px solid #111e25; 
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100vh; z-index: 99; transition: all 0.2s;
}
#sidebar.active { margin-left: -230px; }
#sidebar .sidebar-header { padding: 10px 12px; border-bottom: 2px solid #111e25; background: #0b1419; }
#sidebar .sidebar-menu-scroll { flex-grow: 1; overflow-y: auto; overflow-x: hidden; }

/* SIDEBAR CATEGORY MASTER LIST STYLING */
#sidebar ul.components { padding: 0; }
#sidebar ul li a { 
    padding: 10px 14px; display: flex; justify-content: space-between; align-items: center;
    color: #94a3b8; font-weight: 900; border-bottom: 1px solid #1e293b; font-size: 10px; text-transform: uppercase;
}
#sidebar ul li a:hover, #sidebar ul li.active > a { color: #111e25; background: #00f2fe; }
#sidebar ul li a .cat-count { font-size: 9px; padding: 1px 6px; font-weight: 900; }

#main-container { display: flex; flex-direction: column; width: 100%; height: 100vh; overflow: hidden; }
#main-header { padding: 8px; background: #f8fafc; flex-shrink: 0; }
#content-scroll-area { width: 100%; padding: 0 8px; background: #f8fafc; flex-grow: 1; overflow-y: auto; overflow-x: hidden; }
#main-footer { padding: 8px; background: #f8fafc; flex-shrink: 0; }
#sidebarCollapse { width: 32px; height: 32px; background: #111e25; border: 2px solid #00f2fe; color: #00f2fe; cursor: pointer; }

.image-container { height: 200px; overflow: hidden; display: flex; align-items: center; border-bottom: 2px solid #111e25; background: #111e25; }
.image-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.terminal-mini { background: #090f12; color: #00f2fe; border: 2px solid #111e25; padding: 6px 10px; box-shadow: 2px 2px 0px 0px #111e25; }
.p-tight { padding: 6px 8px !important; }
.badge-flat-mini { font-size: 9px; padding: 2px 5px; border: 1px solid #111e25; font-weight: 600; background: #e2e8f0; color: #111e25; margin-right: 3px; margin-bottom: 3px; display: inline-block; text-transform: uppercase; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4f5; }
::-webkit-scrollbar-thumb { background: #111e25; }

@media (max-width: 768px) {
    #sidebar { position: absolute; left: 0; height: 100vh; margin-left: -230px; }
    #sidebar.active { margin-left: 0; }
}