/* Base Styles */
body {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Custom Scrollbar - Terminal Theme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #000000;
    border-left: 1px solid #00ff00;
}

::-webkit-scrollbar-thumb {
    background-color: #003300;
    border: 1px solid #00ff00;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #004400;
    box-shadow: 0 0 5px #00ff00;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #003300 #000000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.header {
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    margin-bottom: 20px;
    position: relative;
}

.back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.back-btn:hover {
    background-color: #003300;
    box-shadow: 0 0 10px #00ff00;
}

.theme-dropdown {
    position: absolute;
    top: 15px;
    right: 15px;
}

.theme-dropdown-btn {
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-dropdown-btn:hover {
    background-color: #003300;
    box-shadow: 0 0 10px #00ff00;
}

.theme-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #000000;
    min-width: 200px;
    box-shadow: 0 0 10px #00ff00;
    border: 1px solid #00ff00;
    z-index: 1000;
    margin-top: 5px;
}

.theme-dropdown-content.show {
    display: block;
}

.theme-option {
    background-color: #000000;
    color: #00ff00;
    border: none;
    border-bottom: 1px solid #003300;
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.theme-option:last-child {
    border-bottom: none;
}

.theme-option:hover {
    background-color: #003300;
}

h1 {
    color: #00ff00;
    text-align: center;
    text-shadow: 0 0 5px #00ff00;
    margin: 0 0 10px 0;
}

.intro {
    margin: 10px 0;
}

.warning {
    color: #ff9900;
    font-style: italic;
}

.prompt {
    color: #00ff00;
    font-weight: bold;
}

/* Search Bar */
.search-container {
    border: 1px solid #00ff00;
    padding: 15px;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    box-sizing: border-box;
}

#searchInput:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff00;
}

#searchInput::placeholder {
    color: #006600;
}

/* Search Options */
.search-options {
    margin-top: 10px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #00ff00;
    background-color: #000000;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:hover {
    box-shadow: 0 0 5px #00ff00;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #003300;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label span {
    color: #00ff00;
}

/* Filter Buttons */
.filter-container {
    border: 1px solid #00ff00;
    padding: 15px;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.filter-btn {
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover {
    background-color: #003300;
    box-shadow: 0 0 10px #00ff00;
}

.filter-btn.active {
    background-color: #00ff00;
    color: #000000;
    font-weight: bold;
}

.filter-btn:hover {
    background-color: #003300;
    box-shadow: 0 0 10px #00ff00;
}

.filter-btn.active {
    background-color: #00ff00;
    color: #000000;
    font-weight: bold;
}

/* Filter Separator */
.filter-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00ff00, transparent);
    margin: 5px 0;
}

/* View Controls */
.view-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.view-btn {
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.view-btn:hover {
    background-color: #003300;
    box-shadow: 0 0 10px #00ff00;
}

.view-btn.active {
    background-color: #00ff00;
    color: #000000;
    font-weight: bold;
}

.sort-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sort-controls select {
    background-color: #000000;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 6px 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
}

.sort-controls select:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff00;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Tool Cards */
.tool-card {
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Verified Stamp */
.tool-card[data-verified="true"]::before {
    content: "📍 lebon.info";
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 4px 8px;
    background-color: transparent;
    color: #00ff00;
    border: 3px solid #00ff00;
    border-radius: 4px;
    font-weight: bold;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    transform: rotate(-6deg);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 10;
    opacity: 0.9;
    text-shadow: 0 0 3px #00ff00;
}

.tool-card:hover {
    box-shadow: 0 0 20px #00ff00;
    transform: translateY(-2px);
}

.tool-card h3 {
    color: #00ff00;
    margin: 0 0 10px 0;
    text-shadow: 0 0 5px #00ff00;
    font-size: 18px;
    padding-right: 120px;
}

.tool-type {
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 5px;
}

.badge.online {
    /* background-color: #0066ff; */
    color: #ffffff;
    border: 1px solid #0099ff;
}

.badge.hybrid {
    /* background-color: #00cccc; */
    color: #ffffff;
    border: 1px solid #00ffff;
}

.badge.download {
    /* background-color: #ff6600; */
    color: #ffffff;
    border: 1px solid #ff9933;
}

.badge.browser {
    /* background-color: #6600cc; */
    color: #ffffff;
    border: 1px solid #9933ff;
}

.badge.free {
    /* background-color: #00cc00; */
    color: #ffffff;
    border: 1px solid #00ff00;
}

.badge.freemium {
   /* background-color: #ffaa00; */
    color: #ffffff;
    border: 1px solid #ffcc00;
}

.badge.trial {
    /* background-color: #ff9900; */
    color: #ffffff;
    border: 1px solid #ffbb00;
}

.badge.paid {
    /* background-color: #cc0000; */
    color: #ffffff;
    border: 1px solid #ff0000;
}

.badge.lebon {
    background-color: #9900ff;
    color: #ffffff;
    border: 1px solid #cc00ff;
    font-size: 10px;
    padding: 3px 8px;
}

.tool-desc {
    color: #cccccc;
    font-size: 14px;
    margin: 10px 0;
    flex-grow: 1;
    line-height: 1.5;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.tool-links a {
    color: #00ff00;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #00ff00;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 13px;
}

.tool-links a:hover {
    background-color: #00ff00;
    color: #000000;
    text-shadow: none;
}

/* Compact Table View */
.tools-table {
    border: 1px solid #00ff00;
    padding: 0;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    margin-bottom: 20px;
    overflow-x: auto;
}

#compactTable {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Courier New', monospace;
}

#compactTable thead {
    background-color: #003300;
    border-bottom: 2px solid #00ff00;
}

#compactTable th {
    color: #00ff00;
    text-align: left;
    padding: 12px;
    font-weight: bold;
    border-bottom: 1px solid #00ff00;
    white-space: nowrap;
}

#compactTable tbody tr {
    border-bottom: 1px solid #004400;
    transition: background-color 0.2s ease;
}

#compactTable tbody tr:hover {
    background-color: #002200;
}

#compactTable td {
    padding: 10px 12px;
    color: #cccccc;
    vertical-align: top;
}

.tool-name {
    color: #00ff00;
    font-weight: bold;
    min-width: 180px;
    position: relative;
}

/* Verified stamp - applies to both grid and compact view */
.verified-stamp {
    display: inline-block;
    padding: 2px 6px;
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    margin-left: 8px;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
    vertical-align: middle;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    transform: rotate(-3deg);
    opacity: 0.9;
    text-shadow: 0 0 2px #00ff00;
}

/* GDPR stamp with blue-yellow console colors */
.tool-name .verified-stamp.gdpr-stamp,
.verified-stamp.gdpr-stamp {
    background: linear-gradient(135deg, #4a9eff 0%, #ffe066 100%);
    color: #0a0a0a;
    border: 2px solid #ffe066;
    box-shadow: 0 0 8px rgba(74, 158, 255, 0.5), 0 0 4px rgba(255, 224, 102, 0.5);
    text-shadow: 0 0 2px rgba(255, 224, 102, 0.8);
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    margin-left: 8px;
    vertical-align: middle;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    transform: rotate(-3deg);
    opacity: 0.9;
}

.tool-type-cell {
    min-width: 120px;
    font-size: 12px;
}

.tool-price-cell {
    min-width: 100px;
    font-size: 12px;
}

.tool-category {
    min-width: 150px;
    font-size: 12px;
}

.tool-description {
    max-width: 400px;
    line-height: 1.4;
    font-size: 13px;
}

.tool-links-cell {
    min-width: 100px;
    white-space: nowrap;
}

.tool-links-cell a {
    color: #00ff00;
    text-decoration: none;
    margin-right: 8px;
    transition: color 0.2s ease;
}

.tool-links-cell a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

/* Footer */
footer {
    border: 1px solid #00ff00;
    padding: 15px;
    background-color: #001100;
    box-shadow: 0 0 10px #00ff00;
    text-align: center;
}

.footer-text {
    color: #888888;
    font-size: 14px;
    margin: 10px 0 0 0;
}

#toolCount {
    color: #ffff00;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    body {
        padding: 10px;
    }
    
    /* Show only emoji for theme button on small screens */
    .theme-dropdown-btn .btn-text {
        display: none;
    }
    
    .theme-dropdown-btn {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    /* Make back button compact on small screens */
    .back-btn {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    .back-btn .btn-text {
        display: none;
    }
    
    /* Make table scrollable on mobile */
    .tools-table {
        overflow-x: auto;
    }
    
    #compactTable {
        min-width: 800px;
    }
    
    .view-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-btn {
        width: 100%;
    }
    
    .sort-controls {
        width: 100%;
        margin-top: 10px;
    }
    
    .sort-controls select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .tool-links {
        font-size: 12px;
    }
    
    .tool-card h3 {
        font-size: 16px;
    }
}

/* Expandable Links Section */
.links-expandable {
    margin-top: 10px;
}

.links-expandable summary {
    cursor: pointer;
    color: #00ff00;
    padding: 8px;
    background-color: #001a00;
    border: 1px solid #00ff00;
    border-radius: 3px;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
}

.links-expandable summary:hover {
    background-color: #002200;
    box-shadow: 0 0 5px #00ff00;
}

.links-expandable summary::-webkit-details-marker {
    display: none;
}

.links-expandable summary::before {
    content: '▶ ';
    display: inline-block;
    transition: transform 0.3s ease;
}

.links-expandable[open] summary::before {
    transform: rotate(90deg);
}

.links-expandable .expandable-content {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    background-color: #000a00;
}

.links-expandable .expandable-content a {
    display: inline-block;
    margin: 3px;
    padding: 4px 8px;
    font-size: 12px;
}

.link-section {
    margin-bottom: 10px;
}

.link-section-title {
    color: #00cc00;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Portal Details Expandable Section */
.portal-details {
    margin-top: 8px;
    width: 100%;
}

.portal-details summary {
    cursor: pointer;
    color: #00ff00;
    padding: 6px 10px;
    background-color: #001a00;
    border: 1px solid #00ff00;
    border-radius: 3px;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 13px;
    display: inline-block;
}

.portal-details summary:hover {
    background-color: #003300;
    box-shadow: 0 0 5px #00ff00;
}

.portal-details summary::-webkit-details-marker {
    display: none;
}

.portal-details summary::before {
    content: '▶ ';
    display: inline-block;
    transition: transform 0.3s ease;
}

.portal-details[open] summary::before {
    transform: rotate(90deg);
}

.portal-details .portal-links {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    background-color: #000a00;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.portal-details .portal-links a {
    display: inline-block;
    padding: 4px 8px;
    font-size: 14px;
    background-color: #001100;
    border: 1px solid #00aa00;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.portal-details .portal-links a:hover {
    background-color: #003300;
    box-shadow: 0 0 8px #00ff00;
    transform: scale(1.1);
}

/* Portal Details for Compact Table View */
.portal-details-compact {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}

.portal-details-compact summary {
    cursor: pointer;
    color: #00ff00;
    padding: 2px 6px;
    background-color: #001a00;
    border: 1px solid #00ff00;
    border-radius: 3px;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 12px;
    display: inline-block;
}

.portal-details-compact summary:hover {
    background-color: #003300;
    box-shadow: 0 0 5px #00ff00;
}

.portal-details-compact summary::-webkit-details-marker {
    display: none;
}

.portal-details-compact[open] summary {
    margin-bottom: 4px;
}

.portal-details-compact .portal-links-compact {
    position: absolute;
    z-index: 100;
    margin-top: 4px;
    padding: 8px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    background-color: #001a00;
    box-shadow: 0 0 10px #00ff00;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 300px;
}

.portal-details-compact .portal-links-compact a {
    display: inline-block;
    padding: 4px 6px;
    font-size: 13px;
    background-color: #001100;
    border: 1px solid #00aa00;
    border-radius: 2px;
    transition: all 0.2s ease;
    color: #00ff00;
    text-decoration: none;
}

.portal-details-compact .portal-links-compact a:hover {
    background-color: #003300;
    box-shadow: 0 0 5px #00ff00;
    transform: scale(1.05);
}

/* Clean Theme - Remove borders and shadows */
body.clean-theme .header,
body.clean-theme .search-container,
body.clean-theme .filter-container,
body.clean-theme .tool-card,
body.clean-theme #searchInput,
body.clean-theme .view-btn,
body.clean-theme .filter-btn,
body.clean-theme .tool-links a,
body.clean-theme .portal-details,
body.clean-theme .portal-links,
body.clean-theme .portal-links a,
body.clean-theme .portal-details-compact,
body.clean-theme .portal-links-compact,
body.clean-theme .portal-links-compact a,
body.clean-theme .tools-table {
    border: none !important;
    box-shadow: none !important;
}

body.clean-theme h1 {
    text-shadow: none !important;
}

body.clean-theme .tool-links a:hover,
body.clean-theme .filter-btn:hover,
body.clean-theme .view-btn:hover,
body.clean-theme .portal-links a:hover,
body.clean-theme .portal-links-compact a:hover {
    box-shadow: none !important;
}

/* Bright Theme - Outlook-inspired bright style */
body.bright-theme {
    background-color: #f3f2f1;
    color: #323130;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.bright-theme .container {
    background-color: #ffffff;
}

body.bright-theme .header {
    border: none;
    border-bottom: 2px solid #005a9e;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.25);
}

body.bright-theme .back-btn {
    background-color: #ffffff;
    color: #0078d4;
    border: 1px solid #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .back-btn:hover {
    background-color: #f3f2f1;
    color: #005a9e;
    border-color: #f3f2f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.bright-theme h1 {
    color: #ffffff;
    text-shadow: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
}

body.bright-theme .prompt {
    color: #ffffff;
    opacity: 0.9;
    font-weight: bold;
}

body.bright-theme .intro,
body.bright-theme .warning {
    color: #323130;
    opacity: 1;
    font-weight: bold;
}

body.bright-theme .prompt {
    color: #323130;
    font-weight: bold;
}

body.bright-theme .search-container {
    background-color: #faf9f8;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
    box-shadow: none;
}

body.bright-theme #searchInput {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme #searchInput:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

body.bright-theme #searchInput::placeholder {
    color: #605e5c;
}

body.bright-theme .filter-container {
    background-color: #faf9f8;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
    box-shadow: none;
}

body.bright-theme .filter-btn {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .filter-btn:hover {
    background-color: #f3f2f1;
    border-color: #323130;
    box-shadow: none;
}

body.bright-theme .filter-btn.active {
    background-color: #0078d4;
    color: #ffffff;
    border-color: #0078d4;
}

body.bright-theme .filter-separator {
    background: linear-gradient(to right, transparent, #c8c6c4, transparent);
}

body.bright-theme .view-btn {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .view-btn:hover {
    background-color: #f3f2f1;
    border-color: #323130;
    box-shadow: none;
}

body.bright-theme .view-btn.active {
    background-color: #0078d4;
    color: #ffffff;
    border-color: #0078d4;
}

body.bright-theme .tool-card {
    background-color: #ffffff;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.bright-theme .tool-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #c7e0f4;
}

body.bright-theme .tool-name {
    color: #0078d4;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
}

body.bright-theme .tool-card h3 {
    color: #0078d4;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    text-shadow: none;
    padding-right: 120px;
}

body.bright-theme .tool-desc {
    color: #605e5c;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .checkbox-label span {
    color: #323130;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .verified-stamp {
    color: #8764b8;
    border: 2px solid #8764b8;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3f0f9;
    box-shadow: 0 1px 2px rgba(135, 100, 184, 0.2) !important;
    text-shadow: none !important;
    opacity: 1;
}

body.bright-theme .verified-stamp.gdpr-stamp {
    background: linear-gradient(135deg, #0078d4 0%, #ffc83d 100%);
    color: #000000;
    border: 2px solid #ffc83d;
    box-shadow: 0 1px 3px rgba(0, 120, 212, 0.3) !important;
    text-shadow: none !important;
    opacity: 1;
}

body.bright-theme .tool-card[data-verified="true"]::before {
    color: #0e6b0e;
    border: 3px solid #0e6b0e;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3f9f1;
    box-shadow: 0 1px 3px rgba(14, 107, 14, 0.2) !important;
    text-shadow: none !important;
    opacity: 1;
}

body.bright-theme .badge {
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .badge.online {
    background-color: #0078d4;
    color: #ffffff;
    border: 1px solid #106ebe;
}

body.bright-theme .badge.download {
    background-color: #d83b01;
    color: #ffffff;
    border: 1px solid #c43501;
}

body.bright-theme .badge.browser {
    background-color: #5c2d91;
    color: #ffffff;
    border: 1px solid #7719aa;
}

body.bright-theme .badge.hybrid {
    background-color: #00cccc;
    color: #ffffff;
    border: 1px solid #00a3a3;
}

body.bright-theme .badge.free {
    background-color: #107c10;
    color: #ffffff;
    border: 1px solid #0e6b0e;
}

body.bright-theme .badge.freemium {
    background-color: #f7630c;
    color: #ffffff;
    border: 1px solid #d85400;
}

body.bright-theme .badge.trial {
    background-color: #ff8c00;
    color: #ffffff;
    border: 1px solid #e67e00;
}

body.bright-theme .badge.paid {
    background-color: #a4262c;
    color: #ffffff;
    border: 1px solid #8a1f24;
}

body.bright-theme .badge.lebon {
    background-color: #8661c5;
    color: #ffffff;
    border: 1px solid #6b4f9f;
}

body.bright-theme .badge.verified {
    background-color: #107c10;
    color: #ffffff;
    border: 1px solid #0e6b0e;
}

body.bright-theme .tool-links a {
    background-color: #0078d4;
    color: #ffffff;
    border: 1px solid #0078d4;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .tool-links a:hover {
    background-color: #106ebe;
    border-color: #106ebe;
    text-shadow: none;
}

body.bright-theme .tools-table {
    background-color: #ffffff;
    border: 1px solid #c8c6c4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.bright-theme #compactTable {
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme #compactTable thead {
    background-color: #f3f2f1;
    border-bottom: 2px solid #c8c6c4;
}

body.bright-theme #compactTable th {
    color: #323130;
    font-weight: 600;
}

body.bright-theme #compactTable td {
    color: #323130;
    border-bottom: 1px solid #f3f2f1;
}

body.bright-theme #compactTable tr:hover {
    background-color: #f3f2f1;
}

body.bright-theme .portal-details,
body.bright-theme .portal-details-compact {
    background-color: #faf9f8;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
}

body.bright-theme .portal-details summary,
body.bright-theme .portal-details-compact summary {
    color: #0078d4;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    background-color: #f3f2f1;
    border: 1px solid #c8c6c4;
}

body.bright-theme .portal-details summary:hover,
body.bright-theme .portal-details-compact summary:hover {
    background-color: #e1dfdd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.bright-theme .portal-links,
body.bright-theme .portal-links-compact {
    background-color: #ffffff;
    border: 1px solid #c8c6c4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.bright-theme .portal-links a,
body.bright-theme .portal-links-compact a {
    background-color: #f3f2f1;
    color: #0078d4;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .portal-links a:hover,
body.bright-theme .portal-links-compact a:hover {
    background-color: #0078d4;
    color: #ffffff;
    border-color: #0078d4;
}

body.bright-theme .sort-controls select {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .sort-controls select:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

body.bright-theme .checkbox-label input[type="checkbox"] {
    border: 2px solid #8a8886;
    background-color: #ffffff;
}

body.bright-theme .checkbox-label input[type="checkbox"]:hover {
    box-shadow: 0 0 0 1px #0078d4;
}

body.bright-theme .checkbox-label input[type="checkbox"]:checked {
    background-color: #0078d4;
    border-color: #0078d4;
}

body.bright-theme .checkbox-label input[type="checkbox"]:checked::after {
    color: #ffffff;
}

body.bright-theme .portal-links-compact {
    background-color: #ffffff;
    border: 1px solid #edebe9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.bright-theme footer {
    background-color: #f3f2f1;
    border: 1px solid #c8c6c4;
    box-shadow: none;
}

body.bright-theme .footer-text {
    color: #605e5c;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme #toolCount {
    color: #0078d4;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .portal-details-compact {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}

body.bright-theme .portal-details-compact summary {
    color: #0078d4;
    background-color: #f3f2f1;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .portal-details-compact summary:hover {
    background-color: #e1dfdd;
    border-color: #c7e0f4;
}

body.bright-theme .portal-details-compact .portal-links-compact {
    background-color: #ffffff;
    border: 1px solid #c8c6c4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

body.bright-theme .portal-details-compact .portal-links-compact a {
    background-color: #f3f2f1;
    color: #0078d4;
    border: 1px solid #c8c6c4;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .portal-details-compact .portal-links-compact a:hover {
    background-color: #0078d4;
    color: #ffffff;
    border-color: #0078d4;
}

body.bright-theme .theme-dropdown-btn {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #ffffff;
    border-radius: 2px;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .theme-dropdown-btn:hover {
    background-color: #f3f2f1;
    box-shadow: none;
}

body.bright-theme .theme-dropdown-content {
    background-color: #ffffff;
    border: 1px solid #c8c6c4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

body.bright-theme .theme-option {
    background-color: #ffffff;
    color: #323130;
    border-bottom: 1px solid #f3f2f1;
    font-family: 'Segoe UI', sans-serif;
}

body.bright-theme .theme-option:hover {
    background-color: #f3f2f1;
}

/* Bright Theme - Custom Scrollbar */
body.bright-theme::-webkit-scrollbar {
    width: 12px;
}

body.bright-theme::-webkit-scrollbar-track {
    background-color: #f3f2f1;
    border-left: 1px solid #c8c6c4;
}

body.bright-theme::-webkit-scrollbar-thumb {
    background-color: #c8c6c4;
    border: 1px solid #a19f9d;
    border-radius: 2px;
}

body.bright-theme::-webkit-scrollbar-thumb:hover {
    background-color: #a19f9d;
    border-color: #8a8886;
}

/* Firefox scrollbar for Bright theme */
body.bright-theme * {
    scrollbar-width: thin;
    scrollbar-color: #c8c6c4 #f3f2f1;
}