/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Header styles */
header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Search container styles */
.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.2);
}

/* Search bar styles */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    border-color: #6c5ce7;
    background: rgba(255, 255, 255, 0.1);
}

.search-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-button.clear-button {
    background: linear-gradient(135deg, #fd79a8, #6c5ce7);
}

/* Header actions */
.multi-select-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

#select-all-button {
    padding: 0.6rem 1.2rem;
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: none; /* Hidden by default, shown in multi-select mode */
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#select-all-button:hover {
    background: rgba(46, 213, 115, 0.3);
    transform: translateY(-1px);
}

#select-all-button i {
    margin-right: 0.3rem;
}

/* Card action buttons */
.card-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.exclude-export-button {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.exclude-export-button:hover {
    background: rgba(255, 71, 87, 0.2);
}

.exclude-export-button.excluded {
    background: rgba(255, 71, 87, 0.3);
    color: #ff8e9e;
}

/* Style for excluded cards */
.texture-card.excluded {
    opacity: 0.6;
    position: relative;
    border: 2px dashed #ff4757;
}

.texture-card.excluded::after {
    content: "EXCLUDED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 71, 87, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* New: Styles for the multi-select action container */
.multi-select-actions {
    display: flex; /* Hidden by default in HTML, shown by JS */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 1rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.multi-select-actions .selected-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fd79a8; /* Highlighted color for count */
    padding: 0.5rem 1rem;
    border: 1px solid rgba(253, 121, 168, 0.3);
    border-radius: 6px;
    background: rgba(253, 121, 168, 0.1);
}

.multi-select-actions .bulk-action-trigger {
    background: linear-gradient(135deg, #fd79a8, #eb3b5a); /* Reddish gradient */
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.multi-select-actions .bulk-action-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.multi-select-actions .bulk-action-trigger:disabled {
    background: #444;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
}


/* Container styles */
.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Grid layout - Fixed to prevent overlapping */
#texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.02);
    justify-content: center;
    max-width: 100%;
}

/* Card styles - Base for all cards */
.texture-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    height: 420px; /* Fixed height for consistent card size for non-MP3s */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden; /* Keep hidden for non-MP3s */
}

.texture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(108, 92, 231, 0.3);
}

/* Style for edited cards */
.texture-card.edited-card {
    background: #ffffff; /* Full white background */
    border: 2px solid #6c5ce7; /* Highlight border */
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4); /* Stronger shadow */
    color: #1a1a1a; /* Dark text for legibility on white background */
}

.texture-card.edited-card .texture-filename,
.texture-card.edited-card .texture-name,
.texture-card.edited-card .mp3-filename-display,
.texture-card.edited-card .folder-number-button {
    color: #1a1a1a; /* Ensure text is dark on white background */
}

/* MP3-specific card styling (consolidated layout) */
.texture-card.mp3 {
    height: auto; /* Let content dictate height */
    min-height: 220px; /* Minimum height for consolidated MP3 card */
    max-height: none; /* Allow it to expand vertically */
    display: flex;
    flex-direction: column; /* Stack contents vertically */
    align-items: center; /* Center items horizontally within the card */
    justify-content: space-between; /* Push elements to top/bottom, space in between */
    padding: 1rem; /* Overall internal padding for the card */
    background: rgba(108, 92, 231, 0.15); /* A slightly stronger purple tint for the whole card */
    border: 1px solid rgba(108, 92, 231, 0.25);
    overflow: hidden; /* Re-enable overflow hidden for the main card */
}

/* MP3 specific edited card style */
.texture-card.mp3.edited-card {
    background: #e6e6ff; /* A lighter purplish tint for MP3 edited cards */
    border: 2px solid #fd79a8; /* Highlight border */
    box-shadow: 0 4px 20px rgba(253, 121, 168, 0.4);
    color: #1a1a1a; /* Dark text */
}


/* Media container (for PNG/JPG cards) */
.media-container {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.media-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-image:hover {
    transform: scale(1.03);
}

/* Play icon (now direct child of .texture-card.mp3) */
.media-icon {
    font-size: 3rem; /* Make it a bit bigger as it's more central */
    color: #6c5ce7;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem; /* Space below icon */
    flex-shrink: 0; /* Don't shrink icon */
}

.media-icon:hover {
    transform: scale(1.1);
    color: #fd79a8;
}

/* Style for the MP3 filename displayed prominently on the card */
.mp3-filename-display {
    font-size: 1.1rem; /* Larger font */
    color: #ffffff; /* White color for good contrast */
    font-weight: 600; /* Bolder font */
    text-align: center;
    word-break: break-word; /* Allow long words to break */
    white-space: normal; /* Ensure text wraps */
    padding: 0 0.5rem; /* Horizontal padding */
    flex-grow: 1; /* Allow it to take up available vertical space */
    display: flex; /* Use flex to center text vertically if it's short */
    align-items: center;
    justify-content: center;
    line-height: 1.4; /* Better line spacing for readability */
    max-height: 5.6em; /* Max 4 lines (1.4em * 4 lines) before truncation */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem; /* Space below filename */
}

/* Folder Number Button (now direct child of .texture-card.mp3) */
.folder-number-button {
    background: rgba(253, 121, 168, 0.2);
    border: 1px solid rgba(253, 121, 168, 0.4);
    color: #ffffff;
    padding: 0.5rem 0.8rem; /* More padding */
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem; /* Slightly larger */
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%; /* Don't let it stretch full width */
    width: auto; /* Shrink to content if max-width permits */
    margin-bottom: 1rem; /* Space before the buttons wrapper */
    flex-shrink: 0; /* Don't shrink button */
}

.folder-number-button:hover {
    background: rgba(253, 121, 168, 0.3);
    border-color: rgba(253, 121, 168, 0.6);
    transform: translateY(-1px);
}

/* Info section (for PNG/JPG cards) */
.texture-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    width: 100%;
    background: transparent;
    border-radius: 0 0 16px 16px;
    position: relative;
    flex: 1;
    justify-content: space-between;
    overflow: hidden; /* Keep hidden for text info section */
}

/* File info section - Left side text content (within texture-info for PNG/JPG) */
.file-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: flex-start;
    min-width: 0;
    padding-bottom: 0.5rem;
}

/* Styles for texture-filename (only applies to PNG/JPG cards) */
.texture-filename {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.texture-name { /* This is for the folder name / Artist - Album (only for PNG/JPG) */
    font-size: 0.8rem;
    color: #6c5ce7;
    font-weight: 400;
    word-break: break-word;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Wrapper for MP3 action buttons (now direct child of .texture-card.mp3) */
.mp3-buttons-wrapper {
    display: flex;
    flex-direction: column; /* Stack download and copy buttons vertically */
    gap: 0.5rem;
    width: 80%; /* Control button width relative to card */
    margin-top: auto; /* Push wrapper to the bottom of the card */
    align-items: center; /* Center buttons within wrapper */
    flex-shrink: 0; /* Prevent wrapper from shrinking too much */
}

/* Download and Copy Folder buttons (now inside .mp3-buttons-wrapper) */
.download-button,
.copy-folder-button {
    background: rgba(255, 255, 255, 0.15); /* Consistent with new card background */
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.6rem 1rem; /* Slightly more padding */
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem; /* Slightly larger font */
    width: 100%; /* Make them fill their wrapper */
    transition: all 0.2s ease;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-button:hover,
.copy-folder-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjustments for general buttons-container (for non-MP3 cards) */
.buttons-container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-shrink: 0;
}

.buttons-container .download-button,
.buttons-container .copy-button { /* Use .copy-button for non-MP3s */
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.4);
    color: #ffffff;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    width: auto;
    min-width: 70px;
    transition: all 0.2s ease;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.buttons-container .download-button:hover,
.buttons-container .copy-button:hover {
    background: rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.6);
    transform: translateY(-1px);
}

/* New button for editing/creating assets on each card */
.edit-asset-button {
    background: linear-gradient(135deg, #fd79a8, #eb3b5a); /* Reddish gradient for edit */
    border: none;
    color: white;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 70px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edit-asset-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* New: Styles for multi-select mode */
body.multi-select-active .texture-card:not(.mp3) {
    cursor: pointer; /* Change cursor for clickable cards */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Reset border */
}

body.multi-select-active .texture-card:not(.mp3):hover {
    transform: translateY(-2px); /* Less aggressive hover in select mode */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #6c5ce7; /* Highlight hover */
}

body.multi-select-active .texture-card:not(.mp3) .buttons-container {
    opacity: 0.3; /* Dim edit/copy/download buttons in multi-select mode */
    pointer-events: none; /* Disable clicks on these buttons */
}

body.multi-select-active .texture-card:not(.mp3) .edit-asset-button,
body.multi-select-active .texture-card:not(.mp3) .copy-button,
body.multi-select-active .texture-card:not(.mp3) .download-button {
    cursor: not-allowed;
}


/* New: Style for selected cards in multi-select mode */
.texture-card.selected-for-bulk {
    background: rgba(108, 92, 231, 0.3); /* Purple background */
    border: 3px solid #fd79a8; /* Pink border */
    box-shadow: 0 0 25px rgba(253, 121, 168, 0.5), inset 0 0 15px rgba(253, 121, 168, 0.3); /* Inner and outer glow */
    transform: scale(1.02); /* Slightly larger when selected */
    z-index: 10; /* Bring selected card to front */
}

/* New: Checkbox visual for selectable cards */
.texture-card .select-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #6c5ce7;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: transparent; /* Initially transparent checkmark */
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    z-index: 20; /* Ensure checkbox is on top */
    opacity: 0; /* Hidden by default, shown in multi-select mode */
    pointer-events: none; /* Disable clicks outside multi-select mode */
}

body.multi-select-active .texture-card:not(.mp3) .select-checkbox {
    opacity: 1; /* Show checkbox in multi-select mode for image cards */
    pointer-events: auto; /* Enable clicks */
}

.texture-card.selected-for-bulk .select-checkbox {
    background-color: #6c5ce7; /* Checked state background */
    border-color: #fd79a8;
    color: white; /* Show checkmark */
}


/* Responsive design */
@media (max-width: 768px) {
    #texture-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .texture-card {
        max-width: 100%;
        margin: 0;
        height: auto; /* Allow all cards to adjust height on smaller screens */
    }

    .texture-card.mp3 {
        min-height: 200px; /* Adjust min-height for small screens if needed */
        padding: 1rem;
    }

    .container {
        padding: 1rem;
    }

    header {
        padding: 1.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .multi-select-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .multi-select-actions .bulk-action-trigger {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .search-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-input {
        max-width: 100%;
    }

    /* MP3 specific buttons wrapper on smaller screens */
    .mp3-buttons-wrapper {
        width: 90%; /* Adjust width for smaller screens */
    }

    .download-button,
    .copy-folder-button {
        font-size: 0.8rem;
    }

    /* General buttons container for PNG/JPGs */
    .buttons-container {
        flex-direction: column; /* Stack buttons vertically for smaller cards */
        width: 100%;
        gap: 0.5rem;
    }

    .buttons-container .download-button,
    .buttons-container .copy-button {
        width: 100%; /* Make them fill the container */
        min-width: unset;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .media-icon {
        font-size: 2.5rem; /* Slightly smaller icon on very small screens */
    }

    .mp3-filename-display {
        font-size: 0.9rem; /* Slightly smaller text on very small screens */
        max-height: 4.2em; /* Adjusted max lines for smaller font (1.4em * 3 lines) */
        -webkit-line-clamp: 3;
    }

    .folder-number-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* --- New styles for Loading Overlay and Progress Window --- */

/* Fullscreen Image Viewer */
.fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.fullscreen-viewer.active {
    display: flex;
}

.fullscreen-viewer img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-fullscreen:hover {
    color: #ff4757;
}

.image-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    box-sizing: border-box;
}

#fullscreen-filename {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

#fullscreen-resolution {
    display: block;
    font-size: 14px;
    color: #aaa;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    display: flex; /* Use flexbox to center content */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of everything */
    backdrop-filter: blur(5px); /* Optional: blur background content */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    visibility: hidden; /* Hidden by default */
    opacity: 0; /* Start fully transparent */
    transition: visibility 0.3s linear, opacity 0.3s linear; /* Smooth transition */
}

.loading-overlay.active {
    visibility: visible;
    opacity: 1;
}

.loading-window {
    background: #2a2a2a; /* Darker background for the window */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: #ffffff;
}

.loading-window h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #6c5ce7;
}

.progress-bar-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    height: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%; /* Initial width */
    background: linear-gradient(90deg, #6c5ce7, #fd79a8); /* Gradient for the bar */
    border-radius: 5px;
    transition: width 0.1s ease-out; /* Smooth progress update */
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #ffffff;
}

.console-output {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
}

.console-output h3 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

#console-log {
    background: #1a1a1a;
    color: #0f0; /* Green text for console feel */
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    height: 150px; /* Fixed height for the console */
    overflow-y: auto; /* Enable scrolling */
    border: 1px solid #333;
    padding: 0.5rem;
    border-radius: 4px;
    white-space: pre-wrap; /* Preserve whitespace and wrap long lines */
    word-break: break-all; /* Break long words */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #6c5ce7 #333; /* Firefox */
}

/* Custom scrollbar for Webkit (Chrome, Safari) */
#console-log::-webkit-scrollbar {
    width: 8px;
}

#console-log::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

#console-log::-webkit-scrollbar-thumb {
    background: #6c5ce7;
    border-radius: 10px;
}

#console-log::-webkit-scrollbar-thumb:hover {
    background: #fd79a8;
}