body {
    overflow: auto !important;
    scrollbar-width: none; /* Firefox */
}
.gradient-background::-webkit-scrollbar,
.FluentGrid::-webkit-scrollbar,
.FluentGridItem::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Try to override Fluent UI's heading style directly */
.fluent-accordion .fluent-accordion-header,
.fluent-accordion .fluent-accordion-header * {
    user-select: text !important;
}

.fluent-services-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.10);
    cursor: pointer;
    height: 100%;
    padding: 0;
}

.fluent-services-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.15);
    transform: translateY(4px) scale(0.98);
}

.fluent-portfolio-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.10);
    transition: box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
}

.fluent-portfolio-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.15);
    transform: translateY(4px) scale(0.98);
}

.horizontal-header {
    display: flex;
    align-items: center;
    background: #fff; /* or a visible color */
    z-index: 10;
}

.nav-link {
    color: #222 !important;
    background: transparent !important;
    font-size: 1rem;
    margin-left: 12px;
    text-decoration: none;
    display: inline-block;
}

.nav-link:hover {
    text-decoration: underline;
}

.gradient-background {
    background: linear-gradient(135deg, #acfafa 0%, #56b4ea 100%);
    padding: 4px;
}

.console-black {
    background: black;
    border-radius: 12px;
    padding: 16px;

}
.scrollable {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 60vh;
}
/*.fluent-persona .name {
    display: none;
}
*/
.header-gutters {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* optional: allows wrapping on smaller screens */
    gap: 10px; /* optional: adds spacing between items */
}

.background-color-red {
    background: Red;
    border-radius: 5px;
    padding: 5px;
}

.background-color-grey {
    background: Grey;
    border-radius: 5px;
    padding: 5px;
}

.fluent-nav-link {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.fluent-nav-link > *:first-child {
    margin-right: 0.5em !important;
}

.fluent-nav-link .fluent-icon {
    margin-right: 0.5em;
    margin-left: 0;
    vertical-align: middle;
    order: 0;
}

.header-nav {
    min-height: 64px;
    height: auto;
    align-items: stretch;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .hide-on-small {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .sidebar-nav {
        display: none !important;
    }
    .header-nav {
        flex-direction: column !important;
        height: auto !important;
        min-height: 0 !important;
        align-items: stretch !important;
        padding-bottom: 0.5rem;
    }

    .main-nav-links {
        flex-direction: column !important;
        width: 100%;
    }


    .typography-title-large {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .typography-title-medium {
        font-size: 1.25rem;
        font-weight: 500;
        margin-top: 1rem;
    }


    .main-nav-links > * {
        width: 100%;
        margin: 0 0 8px 0;
    }
}

.mtk1 {
    color: #e9e8e7;
}
.mtk3 {
    color: grey;
}
.mtk4 {
    color: #56b4e9;
}
.mtk5 {
    color: #fe6100;
}
.mtk6 {
    color: #21b7b9;
}
.mtk7{
    color: blueviolet
}
.mtk8{
    color: #f6069e
}
.mtk9 {
    color: #4dc40f;
}
.disable-splitter-bar {
    pointer-events: none;
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white; /* Optional: ensures button doesn't blend with content */
}

.codeedit-container {
  display: flex;
  flex-direction: row;
  height: 100vh; /* Use viewport height for full-page layout */
  width: 100vw; /* Use viewport width for full-page layout */
  min-height: 0;
  min-width: 0;
}

.codeedit-nav {
  width: 250px;
  min-width: 200px;
  max-width: 350px;
  height: 100%;
  flex-shrink: 0;
  overflow-y: auto;
  background: #f8f8f8;
  border-right: 1px solid #eee;
}

.codeedit-editor {
  flex: 1 1 0;
  height: 100%;
  display: flex;
  min-width: 50vh;
  min-height: 90vh;
  flex-direction: column;
}

#my-code-editor {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  border: 1px solid gray;
  position: relative;
}
#folder-menu-monitored {
    background-color: green;
}
#folder-menu-abandoned {
    background-color: red;
}
.fullscreen-container {
  height: 100vh;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  overflow: auto;
  position: relative;
}