/* ######################################################## */
/* Root Wrapper used for Dashboard Applications             */
/* ######################################################## */

.root-outer .bg-primary {
    background-color: #202432;
    /* background-color: #262b40; */
}

/* ######################################################## */
/* Collapsible Side Bar                                     */
/* ######################################################## */

.root-outer > .sidebar {
    background-color: #202432;
    /* background-color: #262b40; */
    /* background-color: #16161D; */
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-header {
    padding: 0.5rem 1.9rem;
    border-bottom: 1px solid #F0D943;
}

/* Sidebar Website Logo */
.root-outer > .sidebar > .sidebar-inner > .sidebar-header .image {
    max-width: 13.6rem;
}

/* Sidebar Logout Button */
.root-outer > .sidebar > .sidebar-inner > .sidebar-header .signout {
    padding: 0.25rem 0.5rem;
    background-color: #F0D943;
    /* background-color: #344FFE; */
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-header .close {
    margin: 0;
}

/* Segment part */
.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu {
    /* background-color: #262B40; */
    background-color: #202432;
    border-radius: 0;
    padding: 0 0.5rem !important;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items {
    background-color: #202432;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .plus-menu-header {
    color: #F0D943;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item {
    color: #BABCCE;
    padding: .95rem .95rem;
    border-radius: 0.5rem;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item:hover {
    background-color: #181b26;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item .icon {
    color: #5D5D79;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item.active {
    color: #e0e1f0;
    font-weight: 600;
    background-color: #12141c;
}

.root-outer > .sidebar > .sidebar-inner > .sidebar-nav > .plus-menu .plus-menu-items .item.active .icon {
    color: #344FFE;
}

/* ######################################################## */
/* Navbar                                                   */
/* ######################################################## */

/* Colors */
.navbar > .navbar-params > .form { margin: auto 0.25rem; height: 1.5rem; }
.navbar > .navbar-params > .form > .input > input { background: #e0e1e2; border: none; border-radius: 0.285rem; color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .checkbox > label::before { background: #e0e1e2; border: none; border-radius: 0.285rem; }
.navbar > .navbar-params > .form > .checkbox > label::after { color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .checkbox > label { color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .dropdown { background: #e0e1e2; border: none; border-radius: 0.285rem; color: rgba(0, 0, 0, .6); }
.navbar > .navbar-params > .form > .dropdown > i.dropdown { background: #e0e1e2; border: none; border-radius: 0.285rem; }

/* ################################################################ */
/* Joyride Tutorials                                                */
/* ################################################################ */

.react-joyride__tooltip {
    text-align: left;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
}

.react-joyride__tooltip > div > h1 {
    color: #000;
}

/* ######################################################## */
/* Legacy                                                   */
/* ######################################################## */

.lvsos-container {
    background-color: #fff;
    min-height: 100vh;
    padding: 50px;
}

.lvsos-content {
    background-color: #cff;
    padding: 50px;
    border-radius: 50px;
    border-width: 5px;
    border-color: #000;
    border-style: solid;
}

.lvsos-inner-content {
    margin: auto;
    max-width: 800px;
}

.lvsos-header {
    display: flex;
    align-items: center;
}

.lvsos-header h1 {
    margin-right: 20px;
}

.lvsos-menu {
    text-align: center;
    margin-bottom: 20px;
}

/* ################################################## */
/* Explorer App                                       */
/* ################################################## */

.explorer-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(244, 245, 246, .85) !important;
}

/* ################################################## */
/* Website Layout                                     */
/* ################################################## */

.website {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* ################################################## */
/* Website Header                                     */
/* ################################################## */

.website-header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.website-header > .website-header-menu-item {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    cursor: pointer; /* Add this line to change the cursor to a pointer */
}

.website-header > .website-header-menu-item:hover {
    text-decoration: underline;
}

/* ################################################## */
/* Website Body                                       */
/* ################################################## */

.website-body {
    flex: 1;
/*    padding: 20px;*/
/*    max-width: 800px;*/
    margin: auto;
    margin-top: 20px;
}

/* ################################################## */
/* Website Footer                                     */
/* ################################################## */

.website-footer {
    width: 100%;
    height: 4rem;
}

.footer-wrapper {
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #333;
    color: white;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.footer-wrapper.sticky {
    height: 4rem;
    z-index: 5;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.website-footer > .footer-wrapper > .footer-left,
.website-footer > .footer-wrapper > .footer-right {
    flex-grow: 0;
}

.website-footer > .footer-wrapper > .footer-center {
    flex-grow: 1;
    text-align: center;
}

/* ################################################## */
/* Audio Player Bar                                   */
/* ################################################## */

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-buttons > .player-button {
    background-color: #333;
    color: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer,
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer {
    background-color: #333;
    color: #fff;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress {
    background: #111;
}
.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-progress-outer > .player-progress > .bar {
    background: #fff;
}

.website-footer > .footer-wrapper > .footer-right > .audio-player-bar > .player-volume-outer > i {
    font-size: 1rem;
}

/* ################################################## */
/* Other                                              */
/* ################################################## */

.FeaturedEpisode {
    text-align: justify;
}

/* ################################################## */
/* Files App Styling                                  */
/* ################################################## */

/* Ensure Grid columns use border-box sizing */
.files-app .directories,
.files-app .collection-view {
    box-sizing: border-box !important;
}

/* Add border to AppMenu (the folder list container) */
.files-app .AppMenu {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
}

.files-app .AppMenu.menu {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

/* Search bar styling */
.files-app .AppMenu .item .search-input-container input {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
}

/* Breadcrumb section - add top border and grey background */
.files-app .breadcrumb-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Files section (scrollable area) - add top and bottom borders and light grey bg */
.files-app .AppMenu > div[style*="flex: 1"] {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Add File button styling */
.files-app .files-add-file-dropdown.ui.button {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
}

/* Add border to content area */
.files-app .collection-view {
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
}

/* Files App Content Area Styling */
.files-app .prefix-page {
    padding: 2rem;
}

.files-app .section-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000 !important;
    margin: 0 0 1.5rem 0;
}

.files-app .upload-section {
    margin-bottom: 2.5rem;
}

.files-app .file-uploader {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.files-app .file-uploader-inner {
    border: 2px dashed rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    padding: 3rem !important;
    text-align: center !important;
    cursor: default !important;
    transition: all 200ms;
}

.files-app .file-uploader-inner:hover {
    border-color: rgba(0, 0, 0, 0.3) !important;
    background: rgba(0, 0, 0, 0.04) !important;
}

.files-app .dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.files-app .dropzone-text {
    font-size: 1.1rem;
    color: #000 !important;
    font-weight: 500;
}

.files-app .dropzone-subtext {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6) !important;
    margin-bottom: 1rem;
}

.files-app .browse-button {
    background-color: #6c757d !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    font-weight: 500 !important;
    transition: all 200ms;
}

.files-app .browse-button:hover {
    background-color: #5a6268 !important;
}

.files-app .triggers-section {
    margin-top: 2.5rem;
}

.files-app .triggers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.files-app .add-trigger-button {
    background-color: #f8f9fa !important;
    color: #000 !important;
    border-radius: 8px !important;
    padding: 0.75rem 1.25rem !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    transition: all 200ms;
}

.files-app .add-trigger-button:hover {
    background-color: #e9ecef !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

.files-app .blob-trigger-list {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
}

.files-app .no-triggers-message {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    font-size: 0.95rem;
}
