@scope (.GSAMPLE_FOLDER_BROWSER) {
/*************************************************************/

        .toolbar {
            background: #242424;
            color: #d5a865;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 0;
            box-shadow: 
                0 10px 20px rgba(0, 0, 0, 0.7),
                0 -5px 10px rgba(255, 255, 255, 0.05);
        }

        .toolbar button {
            border: none;
            background: #242424;
            box-shadow: 
                10px 10px 20px rgba(0, 0, 0, 0.7), 
                -10px -10px 20px rgba(255, 255, 255, 0.1);
            margin-right: 12px;
            margin-bottom: 8px;
            position: relative;
            color: #d5a865;
            text-align: center;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .toolbar button:hover {
            box-shadow: 
                5px 5px 15px rgba(0, 0, 0, 0.8), 
                -5px -5px 15px rgba(255, 255, 255, 0.15);
            transform: translateY(-1px);
        }

        .toolbar button:active {
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.8), 
                inset -5px -5px 10px rgba(255, 255, 255, 0.1);
            transform: translateY(1px);
        }

        .toolbar button:disabled {
            color: #666;
            cursor: not-allowed;
            opacity: 0.5;
            box-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.5), 
                -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .breadcrumb {
            background: #2a2a2a;
            color: #d5a865;
            padding: 12px 16px;
            border-bottom: 1px solid #333;
            font-size: 14px;
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.5),
                inset -5px -5px 10px rgba(255, 255, 255, 0.05);
        }

        .breadcrumb span {
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .breadcrumb span:hover {
            background: rgba(213, 168, 101, 0.1);
        }

        .main-container {
            display: flex;
            height: calc(100vh - 540px);
        }

        .sidebar {
            width: 300px;
            background: #242424;
            border-right: 1px solid #333;
            overflow-y: auto;
            box-shadow: 
                inset 3px 3px 6px rgba(0, 0, 0, 0.5),
                inset -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .file-area {
            flex: 1;
            background: #242424;
            display: flex;
            flex-direction: column;
        }

        .file-list {
            flex: 1;
            overflow-y: auto;
            padding: 12px;
        }

        .tree-item {
            margin: 1px 0;
        }

        .tree-item-content {
            padding: 4px 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            border-radius: 4px;
            user-select: none;
        }

        .tree-item-content:hover {
            background: rgba(213, 168, 101, 0.1);
            box-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.3),
                -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .tree-item.selected > .tree-item-content {
            background: #242424;
            color: #d5a865;
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.7),
                inset -5px -5px 10px rgba(255, 255, 255, 0.1);
        }

        .tree-toggle {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
            color: #666;
        }

        .tree-toggle:hover {
            background: rgba(213, 168, 101, 0.2);
            border-radius: 4px;
            box-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.3),
                -2px -2px 4px rgba(255, 255, 255, 0.05);
        }

        .tree-spacer {
            width: 16px;
            height: 16px;
        }

        .tree-item .icon {
            width: 16px;
            height: 16px;
            display: inline-block;
        }

        .folder-icon::before {
            content: "📁";
        }

        .folder-open-icon::before {
            content: "📂";
        }

        .file-icon::before {
            content: "📄";
        }

        .image-icon::before {
            content: "🖼️";
        }

        .video-icon::before {
            content: "🎬";
        }

        .audio-icon::before {
            content: "🎵";
        }

        .tree-children {
            margin-left: 20px;
        }

        .file-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
            padding: 12px;
        }

        .file-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 12px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            background: #242424;
            box-shadow: 
                8px 8px 15px rgba(0, 0, 0, 0.7), 
                -8px -8px 15px rgba(255, 255, 255, 0.1);
            margin: 8px;
        }

        .file-item:hover {
            transform: translateY(-3px);
            box-shadow: 
                12px 12px 25px rgba(0, 0, 0, 0.8), 
                -12px -12px 25px rgba(255, 255, 255, 0.15);
        }

        .file-item.selected {
            border-color: #d5a865;
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.7),
                inset -5px -5px 10px rgba(255, 255, 255, 0.1),
                0 0 20px rgba(213, 168, 101, 0.3);
        }

        .file-item .icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .file-item .name {
            font-size: 12px;
            text-align: center;
            word-break: break-word;
            max-width: 100px;
            color: #d5a865;
        }

        .file-item .size {
            font-size: 10px;
            color: #999;
            margin-top: 4px;
        }

        .upload-area {
            border: 2px dashed #555;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin: 20px;
            transition: all 0.3s;
            background: #2a2a2a;
            color: #d5a865;
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.5),
                inset -5px -5px 10px rgba(255, 255, 255, 0.05);
        }

        .upload-area.dragover {
            border-color: #d5a865;
            background: rgba(213, 168, 101, 0.1);
            box-shadow: 
                inset 8px 8px 15px rgba(0, 0, 0, 0.7),
                inset -8px -8px 15px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(213, 168, 101, 0.3);
        }

        .context-menu {
            position: fixed;
            background: #242424;
            border: 1px solid #444;
            border-radius: 8px;
            box-shadow: 
                10px 10px 20px rgba(0, 0, 0, 0.8),
                -5px -5px 10px rgba(255, 255, 255, 0.05);
            padding: 8px 0;
            z-index: 1000;
            display: none;
        }

        .context-menu-item {
            padding: 12px 20px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #d5a865;
            transition: all 0.2s;
        }

        .context-menu-item:hover {
            background: rgba(213, 168, 101, 0.1);
            box-shadow: 
                inset 3px 3px 6px rgba(0, 0, 0, 0.3),
                inset -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .context-menu-item.disabled {
            color: #666;
            cursor: not-allowed;
        }

        .sfb_modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .sfb_modal-content {
            background: #242424;
            color: #d5a865;
            padding: 32px;
            border-radius: 16px;
            min-width: 400px;
            max-width: 600px;
            box-shadow: 
                20px 20px 40px rgba(0, 0, 0, 0.9),
                -20px -20px 40px rgba(255, 255, 255, 0.1);
        }

        .sfb_modal-header {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #d5a865;
        }

        .sfb_modal-body {
            margin-bottom: 20px;
        }

        .sfb_modal-footer {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
        }

        .btn {
            border: none;
            background: #242424;
            box-shadow: 
                8px 8px 15px rgba(0, 0, 0, 0.7), 
                -8px -8px 15px rgba(255, 255, 255, 0.1);
            margin-right: 12px;
            position: relative;
            color: #d5a865;
            text-align: center;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            box-shadow: 
                4px 4px 10px rgba(0, 0, 0, 0.8), 
                -4px -4px 10px rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .btn:active {
            box-shadow: 
                inset 4px 4px 8px rgba(0, 0, 0, 0.8), 
                inset -4px -4px 8px rgba(255, 255, 255, 0.1);
            transform: translateY(1px);
        }

        .btn-primary {
            color: #d5a865;
        }

        .btn-secondary {
            color: #999;
        }

        .btn-danger {
            color: #e74c3c;
        }

        input[type="text"], input[type="file"] {
            width: 100%;
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            background: #2a2a2a;
            color: #d5a865;
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.7),
                inset -5px -5px 10px rgba(255, 255, 255, 0.05);
            outline: none;
            transition: all 0.3s;
        }

        input[type="text"]:focus, input[type="file"]:focus {
            box-shadow: 
                inset 8px 8px 15px rgba(0, 0, 0, 0.8),
                inset -8px -8px 15px rgba(255, 255, 255, 0.1),
                0 0 20px rgba(213, 168, 101, 0.2);
        }

        input[type="file"] {
            color: #d5a865;
        }

        input[type="file"]::file-selector-button {
            background: #242424;
            color: #d5a865;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            margin-right: 12px;
            cursor: pointer;
            box-shadow: 
                6px 6px 12px rgba(0, 0, 0, 0.7), 
                -6px -6px 12px rgba(255, 255, 255, 0.1);
        }

        .hidden {
            display: none !important;
        }

        .progress-bar {
            width: 100%;
            height: 8px;

            position: relative;
            top: -10px;

            background: #1a1a1a;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 12px;
            box-shadow: 
                inset 3px 3px 6px rgba(0, 0, 0, 0.7),
                inset -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #d5a865, #f0c674);
            width: 0%;
            transition: width 0.3s;
            box-shadow: 0 0 10px rgba(213, 168, 101, 0.5);
        }
        



.view-btn {
            margin-right: 0 !important;
            margin-left: 4px;
            border-radius: 6px;
        }

        .view-btn.active {
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.8), 
                inset -5px -5px 10px rgba(255, 255, 255, 0.1);
            color: #f0c674;
        }

        .file-list-view {
            flex: 1;
            overflow-y: auto;
            padding: 0;
            background: #242424;
        }

        .file-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            color: #d5a865;
            background: #242424;
        }

        .file-table th {
            background: #2a2a2a;
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 10;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
            box-shadow: 
                inset 3px 3px 6px rgba(0, 0, 0, 0.5),
                inset -3px -3px 6px rgba(255, 255, 255, 0.05);
        }

        .file-table th:first-child {
            border-top-left-radius: 8px;
        }

        .file-table th:last-child {
            border-top-right-radius: 8px;
        }

        .file-table th:hover {
            background: rgba(213, 168, 101, 0.1);
            box-shadow: 
                inset 2px 2px 4px rgba(0, 0, 0, 0.7),
                inset -2px -2px 4px rgba(255, 255, 255, 0.1),
                0 0 10px rgba(213, 168, 101, 0.2);
        }

        .file-table th:active {
            box-shadow: 
                inset 5px 5px 10px rgba(0, 0, 0, 0.8),
                inset -5px -5px 10px rgba(255, 255, 255, 0.05);
        }

        .file-table tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid #333;
            cursor: pointer;
            background: #242424;
        }

        .file-table tbody tr:hover {
            background: rgba(213, 168, 101, 0.08);
            transform: translateY(-1px);
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.4),
                0 -2px 8px rgba(255, 255, 255, 0.02);
        }

        .file-table tbody tr.selected {
            background: rgba(213, 168, 101, 0.15);
            box-shadow: 
                inset 3px 3px 8px rgba(0, 0, 0, 0.6),
                inset -3px -3px 8px rgba(255, 255, 255, 0.08),
                0 0 20px rgba(213, 168, 101, 0.25);
            border-left: 3px solid #d5a865;
        }

        .file-table tbody tr.selected:hover {
            background: rgba(213, 168, 101, 0.2);
            transform: translateY(0);
        }

        .file-table td {
            padding: 14px 20px;
            vertical-align: middle;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
        }

        .file-table .file-icon-cell {
            width: 50px;
            text-align: center;
            font-size: 24px;
            padding: 14px 10px;
        }

        .file-table .file-name-cell {
            font-weight: 500;
            color: #d5a865;
            max-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            position: relative;
        }

        .file-table .file-name-cell:hover {
            color: #f0c674;
        }

        .file-table .file-size-cell {
            width: 120px;
            text-align: right;
            color: #999;
            font-size: 13px;
            font-family: 'Courier New', monospace;
        }

        .file-table .file-type-cell {
            width: 140px;
            color: #bbb;
            font-size: 13px;
        }

        .file-table .file-date-cell {
            width: 160px;
            color: #999;
            font-size: 13px;
        }

        .sort-indicator {
            margin-left: 8px;
            font-size: 14px;
            opacity: 0.8;
            color: #d5a865;
            font-weight: bold;
        }

        /* Scrollbar styling for table */
        .file-list-view::-webkit-scrollbar {
            width: 12px;
        }

        .file-list-view::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 6px;
        }

        .file-list-view::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 6px;
            box-shadow: 
                inset 2px 2px 4px rgba(0, 0, 0, 0.5),
                inset -2px -2px 4px rgba(255, 255, 255, 0.05);
        }

        .file-list-view::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Table alternating row styling */
        .file-table tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }

        .file-table tbody tr:nth-child(even):hover {
            background: rgba(213, 168, 101, 0.08);
        }

        .file-table tbody tr:nth-child(even).selected {
            background: rgba(213, 168, 101, 0.15);
        }

        /* Empty state styling */
        .table-empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            font-size: 16px;
        }

        .table-empty-state .icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.5;
        }


/*************************************************************/


        #playPauseBtn { width: 50px; }
        #stopBtn { width: 50px; }
        #prevBtn { width: 50px; }
        #nextBtn { width: 50px; }
        

        .toolbar button.playing {
            color: #85c1e9;
            box-shadow: 
                0 0 20px rgba(133, 193, 233, 0.3),
                10px 10px 20px rgba(0, 0, 0, 0.7), 
                -10px -10px 20px rgba(255, 255, 255, 0.1);
        }

        .progress-container {
            flex: 1;
            height: 6px;
            background: #1a1a1a;
            border-radius: 3px;
            margin: 0 16px;
            position: relative;
            cursor: pointer;
            box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.7);
            width:100px;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #d5a865, #85c1e9);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s ease;
        }

        .time-display {
            color: #d5a865;
            font-size: 11px;
            margin-left: 8px;
            font-family: monospace;
        }

        .volume-container {
            display: flex;
            align-items: center;
            margin-left: 16px;
        }

        .volume-slider {
            width: 60px;
            height: 4px;
            background: #1a1a1a;
            border-radius: 2px;
            margin-left: 8px;
            cursor: pointer;
            position: relative;
            box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .volume-bar {
            height: 100%;
            background: #d5a865;
            border-radius: 2px;
            width: 50%;
            transition: width 0.1s ease;
        }

        .hidden-audio {
            display: none;
        }

        .demo-section {
            color: #d5a865;
            margin-bottom: 20px;
        }

        .demo-section h2 {
            margin-bottom: 10px;
        }

        .demo-section p {
            margin-bottom: 10px;
            color: #999;
        }
/*************************************************************/
}