
body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f3f4f6;
            color: #333;
            /* Use full viewport height */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Top Navigation Bar */
.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between left and right */
    padding: 10px 20px;
    flex-shrink: 0;
}

/* Right Side Navigation Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between the items */
}

.top-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #dca041;
}

        /* App container: now flexible and scrollable */
        .app-container {
            width: 95%;
            max-width: 1200px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            padding: 20px;
            box-sizing: border-box;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Contain scroll within main-content if needed */
        }

        header.app-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            background-color: #fff;
            border-radius: 8px;
            flex-shrink: 0;
        }

        /* Logo Styles */
        .logo {
            font-family: 'Fira Code', monospace;
            font-size: 20px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .logo .slashes {
            color: #dca041;
        }

        .logo .brand-name {
            color: #333;
        }

        .logo .app-name {
            color: #dca041;
            font-size: 16px;
        }

        /* Make the main-content flexible and scrollable */
        .main-content {
            display: flex;
            gap: 20px;
            flex: 1 1 auto;
            overflow: auto; /* Allow scrolling if content exceeds screen */
        }

        .left-column, .right-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-height: 0; /* Allows flexible height inside a flex container */
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .input-section, .query-section, .settings-section-container {
            background: #f9fafb;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        .input-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1 1 45%;
        }

        .form-group label {
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            box-sizing: border-box;
            font-size: 16px;
        }

        button {
            background-color: #dca041;
            color: white;
            border: none;
            padding: 10px 16px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        button:hover:enabled {
            background-color: #45a049;
        }

        .toggle-button {
            background-color: #f3f4f6;
            border: 1px solid #ccc;
            color: #333;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
            text-align: left;
        }

        .toggle-button:hover {
            background-color: #e3e4e6;
        }

        .result-container {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            flex: 1;
            min-height: 0;
        }

        .result-header {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .result {
            width: 100%;
            background-color: #e9f5e9;
            border: 1px solid #dca041;
            border-radius: 8px;
            padding: 15px;
            font-family: Arial, sans-serif;
            white-space: pre-wrap;
            overflow-y: auto;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .result.show {
            opacity: 1;
            transform: translateY(0);
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .settings-section {
            transition: max-height 0.3s ease, opacity 0.3s ease;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }

        .settings-section.visible {
            max-height: 400px;
            opacity: 1;
        }

        #fileExtractionStatus {
            display: none;
            margin-top: 10px;
            font-size: 14px;
            color: #dca041;
            font-weight: bold;
        }

        #fileExtractionStatus span {
            display: inline-block;
            animation: heartbeat 1s infinite alternate;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); color: #dca041; }
            100% { transform: scale(1.2); color: #45a049; }
        }

        .urls-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }

        .url-field-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .url-field-container input {
            flex: 1;
        }

        .remove-url-button {
            background-color: #e53e3e;
            border-radius: 500px;
        }

        .remove-url-button:hover {
            background-color: #c53030;
        }

        .text-editor {
            border: 1px solid #ccc;
            border-radius: 6px;
            height: 50px;
            min-height: 50px;
            max-height: 400px;
            padding: 10px;
            background: #fff;
            overflow-y: auto;
            line-height: 1.5;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .text-editor-focused {
            min-height: 250px;
        }

        .text-editor:focus {
            outline: none;
            border-color: #dca041;
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .loading-overlay.show {
            opacity: 1;
            pointer-events: all;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 8px solid #f3f4f6;
            border-top: 8px solid #dca041;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg);}
            100% { transform: rotate(360deg);}
        }

        .focus-query-desc {
            font-size: 14px;
            color: #555;
        }

        .disclaimer {
            font-size: 14px;
            color: #666;
        }

        .seo-content {
            background: #f9fafb;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            line-height: 1.6;
            flex-shrink: 0;
        }

        .seo-content h2 {
            margin-top: 0;
        }

        .seo-content a {
            color: #dca041;
            text-decoration: none;
        }

        .seo-content a:hover {
            text-decoration: underline;
        }

        .faq {
            background: #f9fafb;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            flex-shrink: 0;
        }

        .faq h2 {
            margin-top: 0;
        }

        .faq .faq-search-container {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq .faq-search-container input {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
        }

        .faq .faq-suggestions {
            border: 1px solid #ccc;
            border-radius: 6px;
            background: #fff;
            position: absolute;
            z-index: 1000;
            width: calc(100% - 40px);
            box-sizing: border-box;
            display: none;
            flex-direction: column;
        }

        .faq .faq-suggestions div {
            padding: 8px;
            cursor: pointer;
        }

        .faq .faq-suggestions div:hover {
            background: #e3e4e6;
        }

        .faq-section-title {
            font-size: 16px;
            font-weight: bold;
            margin-top: 20px;
        }

        .faq-question {
            margin-bottom: 15px;
        }

        .faq-question h4 {
            margin: 0 0 5px;
            font-weight: bold;
        }

        .faq-question p {
            margin: 0;
            line-height: 1.4;
        }

        footer {
            text-align: center;
            font-size: 14px;
            color: #777;
            margin: 20px 0;
            flex-shrink: 0;
        }

        .tools-dock {
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255,255,255,0.9);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            gap: 20px;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            pointer-events: none;
            flex-wrap: wrap; 
            max-width: 80%;
            z-index:100000;
        }

        .tools-dock.show {
            opacity: 1;
            pointer-events: auto;
        }

        .tool-icon {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            text-decoration: none;
            color: #333;
            width: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #ddd;
        }

        .tool-icon i {
            margin-bottom: 10px;
        }

        .tool-icon h4 {
            margin: 0;
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .tool-icon p {
            font-size: 14px;
            margin: 0;
            color: #666;
        }

        .tool-icon:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            .left-column, .right-column {
                width: 100%;
            }
            .form-group {
                flex: 1 1 100%;
            }
            .tool-icon {
                width: 100%;
            }
            /* Adjust padding and margins for small screens */
            .app-container {
                width: 100%;
                margin: 0;
                border-radius: 0;
            }
            .top-nav a {
                margin-right: 10px;
                font-size: 14px;
            }
            .top-nav {
                padding: 10px;
            }
        }

.file-upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    font-size: 14px;
    font-family: 'Fira Code', monospace;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
    background-color: #0056b3;
}



.file-name {
    font-size: 14px;
    color: #555;
    font-family: 'Fira Code', monospace;
}

.status {
    margin-top: 10px;
    font-size: 14px;
    color: #007BFF;
    font-family: 'Fira Code', monospace;
}

.hidden {
    display: none;
}

.upload-progress {
    width: 100%;
    height: 8px;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.upload-progress::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 5px;
}

.upload-progress::-webkit-progress-value {
    background-color: #007BFF;
    border-radius: 5px;
}
.drop-zone {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    z-index: 1;
}

.drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}


.drop-zone:hover {
    border-color: #dca041;
    background-color: #fdf8f2;
}

.drop-zone.dragover {
    border-color: #45a049;
    background-color: #f0f9f0;
    animation: pulseBorder 1s infinite alternate;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 10px #45a049;
    }
    100% {
        box-shadow: 0 0 20px #45a049;
    }
}

.drop-zone-content {
    pointer-events: none;
    transition: transform 0.3s ease;
}

.drop-zone:hover .drop-zone-content {
    transform: scale(1.05);
}

.drop-zone .highlight-text {
    color: #dca041;
    text-decoration: underline;
    font-weight: bold;
}

.drop-zone i {
    color: #dca041;
    margin-bottom: 8px;
}

#fileExtractionStatus {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #dca041;
    font-family: 'Fira Code', monospace;
    position: relative;
}

#fileExtractionStatus span {
    display: inline-block;
    animation: heartbeat 1s infinite alternate;
}

@keyframes heartbeat {
    0% { transform: scale(1); color: #dca041; }
    100% { transform: scale(1.2); color: #45a049; }
}


/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
            z-index:9998
}

.user-dropdown.hidden {
    display: none;
}

.user-dropdown .dropdown-toggle {
    cursor: pointer;
    align-items: center;
    display: flex;
    gap: 10px; /* Space between profile pic and username */
}

.user-dropdown .dropdown-toggle:focus {
    outline: none;
}

.user-dropdown .dropdown-toggle i {
    margin-left: 5px;
    transition: transform 0.3s ease; /* Smooth rotation transition */
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.user-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.user-dropdown .dropdown-menu a {
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.user-dropdown .dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Rotate caret icon on hover */
.user-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Profile Picture Styles */
.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc; /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fira Code', monospace;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease; /* Smooth scaling on hover */
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-pic #userInitials {
    position: absolute;
    font-size: 16px;
}


.chat-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-box {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chat-input button {
    background: #dca041;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-input button:hover {
    background: #b08030;
}

.user-message {
    text-align: right;
    margin-bottom: 10px;
    padding: 8px;
    background: #e9f5e9;
    border-radius: 8px;
    display: inline-block;
}

.ai-message {
    text-align: left;
    margin-bottom: 10px;
    padding: 8px;
    background: #f0f4ff;
    border-radius: 8px;
    display: inline-block;
}

.error-message {
    color: red;
    margin: 10px 0;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-right {
        gap: 10px;
    }

    .top-nav a {
        margin-right: 10px;
        font-size: 14px;
    }

    .top-nav {
        padding: 10px;
    }

    .user-dropdown {
        margin-left: 0;
        margin-top: 10px;
    }

    .user-dropdown .dropdown-toggle {
        gap: 8px;
    }

    .profile-pic {
        width: 35px;
        height: 35px;
    }

    .profile-pic #userInitials {
        font-size: 14px;
    }
}

/* Sortable Handle Styles */
        .sortable-handle, .sortable-handle-inner {
            cursor: move;
            color: #dca041;
        }

        /* Column Drag Handle */
        .column-handle {
            cursor: move;
            color: #dca041;
            font-size: 0.9em; /* Reduced size */
            position: absolute;
            top: 10px; /* Adjust as needed */
            right: 10px; /* Adjust as needed */
            opacity: 0; /* Initially hidden */
            transition: opacity 0.3s ease;
        }

        /* Show drag handle on hover */
        .sortable-section:hover .column-handle {
            opacity: 1;
        }

        /* Drag Indicator for Columns */
        .drag-indicator {
            display: flex;
            align-items: center;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }

        /* Style for inner sortable sections */
        .sortable-inner-content .sortable-item {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 10px;
            background-color: #fff;
            position: relative;
            /* Added for animations */
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Style for drag handles inside inner sortable sections */
        .sortable-item .sortable-handle-inner {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1em;
        }

        /* Optional: Highlight sortable sections on drag */
        .sortable-section {
            border: 1px solid #ccc;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
            background-color: #fafafa;
            position: relative;
            /* Added for animations */
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .sortable-section.dragging {
            opacity: 0.5;
            background-color: #e0e0e0;
        }

        /* Responsive Adjustments */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .left-column, .right-column {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            position: relative; /* To contain absolutely positioned drag handle */
        }

        /* Footer Styling */
        footer {
            text-align: center;
            padding: 20px;
            background-color: #f5f5f5;
            border-top: 1px solid #ddd;
        }

        /* Chat Widget Styles */

        /* Floating Chat Button */
        .chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #dca041;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .chat-button:hover {
            background-color: #b58900;
            transform: translateY(-5px);
        }

        .chat-button i {
            font-size: 24px;
        }

        /* Compose-Style Chat Window */
        .chat-compose {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 350px; /* Default width */
            height: 500px; /* Default height */
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            display: none; /* Hidden by default */
            flex-direction: column;
            z-index: 1001;
            overflow: hidden;
            transition: opacity 0.5s ease, transform 0.5s ease;
            min-width: 300px;
            min-height: 300px;
        }

        .chat-compose.show {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .chat-compose.hide {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* Resizable Handles */
        .resizer-top, .resizer-left {
            position: absolute;
            background: transparent;
        }

        .resizer-top {
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            cursor: ns-resize;
        }

        .resizer-left {
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            cursor: ew-resize;
        }

        /* Chat Header */
        .chat-header {
            background-color: #dca041;
            color: white;
            padding: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-title {
            font-size: 16px;
            font-weight: bold;
        }

        .close-chat {
            cursor: pointer;
            font-size: 20px;
        }

        /* Chat Body */
        .chat-body {
            display: flex;
            flex-direction: column;
            height: calc(100% - 60px); /* Adjust based on header and input heights */
        }

        /* Chat Box */
        .chat-box {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            background-color: #f9f9f9;
        }

        /* Chat Messages */
        .user-message, .ai-message {
            margin-bottom: 10px;
            padding: 8px 12px;
            border-radius: 15px;
            max-width: 80%;
            word-wrap: break-word;
            animation: fadeIn 0.3s ease;
            position: relative;
        }

        .user-message {
            background-color: #e1ffc7;
            align-self: flex-end;
        }

        .ai-message {
            background-color: #f1f0f0;
            align-self: flex-start;
        }

        /* Delete Button for Messages */
        .delete-message {
            position: absolute;
            top: 5px;
            right: 5px;
            background: transparent;
            border: none;
            color: #888;
            cursor: pointer;
            font-size: 14px;
            display: none;
        }

        .user-message:hover .delete-message,
        .ai-message:hover .delete-message {
            display: block;
        }

        /* Fade-in Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Chat Input */
        .chat-input {
            display: flex;
            border-top: 1px solid #ddd;
            padding: 10px;
        }

        .chat-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .chat-input input:focus {
            border-color: #dca041;
        }

        .chat-input button {
            background-color: #dca041;
            border: none;
            color: white;
            padding: 0 15px;
            margin-left: 10px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .chat-input button:hover {
            background-color: #b58900;
        }

        /* Settings Button */
        .settings-button {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
            margin-left: 10px;
        }

        /* Chat Box Scrollbar */
        .chat-box::-webkit-scrollbar {
            width: 8px;
        }

        .chat-box::-webkit-scrollbar-thumb {
            background-color: rgba(0,0,0,0.2);
            border-radius: 4px;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .chat-compose {
                width: 90%;
                right: 5%;
                bottom: 10px;
                height: 400px;
            }
        }

        /* Ensure drag handles are present for inner sortable items */
        .sortable-item .sortable-handle-inner {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1em;
        }

        /* Ensure drag handles are present for sortable sections (columns and footer) */
        .sortable-section .column-handle {
            cursor: move;
            color: #dca041;
            font-size: 0.9em; /* Smaller size */
            position: absolute; /* Absolute positioning */
            top: 10px; /* Adjust as needed */
            right: 10px; /* Adjust as needed */
            opacity: 0; /* Initially hidden */
            transition: opacity 0.3s ease;
        }

        .sortable-section:hover .column-handle {
            opacity: 1;
        }

        /* Optional: Use SVG icon for drag handle */
        .column-handle svg {
            width: 16px; /* Adjust size */
            height: 16px; /* Adjust size */
            fill: #dca041;
        }

        /* Settings Panel */
        .settings-panel {
            padding: 10px;
            border-top: 1px solid #ddd;
            background-color: #f5f5f5;
            display: none;
            flex-direction: column;
            gap: 10px;
        }

        .settings-panel.show {
            display: flex;
        }
