* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    overflow: hidden;
}


/* ================================================================
   VIEWER SHELL — Fake OneDrive PDF viewer (background)
   ================================================================ */

.viewer-shell {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f3f3f3;
}

.viewer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 16px;
    flex-shrink: 0;
}

.viewer-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.viewer-topbar-title {
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.viewer-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.viewer-topbar-btn {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    font-family: inherit;
}

.viewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0078d4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.viewer-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    gap: 24px;
    flex-shrink: 0;
}

.viewer-toolbar-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.viewer-tool-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: default;
    opacity: 0.5;
}

.viewer-page-info,
.viewer-zoom {
    font-size: 12px;
    color: #616161;
    padding: 0 8px;
    user-select: none;
}

/* Download button in toolbar */
.download-btn-toolbar {
    transition: opacity 0.4s ease, color 0.4s ease;
    color: #999;
}

.download-btn-toolbar.enabled {
    opacity: 1 !important;
    color: #0078d4;
    cursor: pointer;
}

.download-btn-toolbar.enabled:hover {
    background: #e8f0fe;
    border-radius: 4px;
}


/* -- PDF Content Area — embeds the real PDF -- */

.viewer-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: #525659;
    overflow: hidden;
}

.pdf-page {
    width: 100%;
    height: 100%;
    filter: blur(3px);
    opacity: 0.8;
    pointer-events: none;
    transition: filter 0.8s ease, opacity 0.8s ease;
}

.pdf-page.revealed {
    filter: blur(0);
    opacity: 1;
    pointer-events: auto;
}

/* Hide the browser's native PDF toolbar by shifting the iframe up */
.pdf-embed-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.pdf-embed {
    width: 100%;
    height: calc(100% + 40px);
    border: none;
    position: absolute;
    top: -40px;
    left: 0;
}


/* ================================================================
   Share OVERLAY — Fake Edge popup window
   ================================================================ */

.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.share-overlay.active {
    display: block;
}

.share-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.share-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 650px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    overflow: visible;
    animation: share-appear 0.2s ease-out;
    min-width: 360px;
    min-height: 300px;
}

@keyframes share-appear {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Minimize animation */
.share-window.minimized {
    transform: scale(0.1) translateY(100vh) !important;
    opacity: 0;
    transition: all 0.2s ease-in;
}

/* Maximized */
.share-window.maximized {
    border-radius: 0 !important;
}

.share-window.maximized .edge-titlebar {
    border-radius: 0;
}


/* --- Title Bar --- */

.edge-titlebar {
    display: flex;
    align-items: center;
    height: 36px;
    background: #f3f3f3;
    border-radius: 8px 8px 0 0;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    flex-shrink: 0;
}

.edge-tab-area {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
    padding-left: 8px;
    gap: 2px;
    min-width: 0;
}

.edge-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 0 12px;
    height: 28px;
    margin-top: 8px;
    max-width: 240px;
    min-width: 0;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.06);
}

.edge-tab-favicon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.edge-tab-title {
    font-size: 12px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edge-tab-close {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.edge-tab-close:hover {
    background: #e0e0e0;
}

.edge-tab-close svg {
    width: 10px;
    height: 10px;
}

.edge-window-controls {
    display: flex;
    height: 100%;
    flex-shrink: 0;
}

.edge-wc-btn {
    width: 46px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: 0;
}

.edge-wc-btn:hover {
    background: #e5e5e5;
}

.edge-wc-btn.close {
    border-radius: 0 8px 0 0;
}

.edge-wc-btn.close:hover {
    background: #c42b1c;
}

.edge-wc-btn.close:hover svg path {
    stroke: #fff;
}

.edge-wc-btn svg {
    width: 10px;
    height: 10px;
}


/* --- Navigation Bar --- */

.edge-navbar {
    display: flex;
    align-items: center;
    height: 40px;
    background: #fff;
    padding: 0 8px;
    gap: 4px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
    position: relative;
}

.edge-nav-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: default;
    flex-shrink: 0;
    border: none;
    background: transparent;
    position: relative;
}

.edge-nav-btn:hover {
    background: #f0f0f0;
}

.edge-nav-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

.edge-nav-btn.pressed {
    background: #e0e0e0;
}

.edge-nav-btn svg {
    width: 14px;
    height: 14px;
}

.btn-extensions svg {
    width: 19px;
    height: 19px;
    color: #444;
    stroke-width: 3 !important;
}

/* Refresh spin */
@keyframes spin-refresh {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.edge-nav-btn svg.spin {
    animation: spin-refresh 0.6s ease;
}

/* Address bar */
.edge-addressbar {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 0 12px;
    height: 32px;
    gap: 6px;
    min-width: 0;
    border: 1px solid transparent;
}

.edge-lock-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.edge-lock-icon svg {
    width: 14px;
    height: 14px;
}

.edge-url {
    font-size: 13px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    line-height: 32px;
}

.edge-url .domain {
    color: #1a1a1a;
}

.edge-url .path {
    color: #777;
}

.edge-addressbar-actions {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.edge-addressbar-actions .edge-nav-btn {
    width: 24px;
    height: 24px;
}

/* Star toggle */
.btn-star .star-filled {
    display: none;
}

.btn-star .star-outline {
    display: block;
}

.btn-star.starred .star-filled {
    display: block;
}

.btn-star.starred .star-outline {
    display: none;
}

.edge-navbar-right {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.edge-profile-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    flex-shrink: 0;
    border: none;
    color: #616161;
}

.edge-profile-btn svg {
    width: 15px;
    height: 15px;
}


/* --- Content Area (iframe) --- */

.edge-content {
    flex: 1;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.edge-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* --- Resize Handles --- */

.resize-handle {
    position: absolute;
    z-index: 10;
}

.resize-n {
    top: -4px; left: 8px; right: 8px; height: 8px;
    cursor: n-resize;
}

.resize-s {
    bottom: -4px; left: 8px; right: 8px; height: 8px;
    cursor: s-resize;
}

.resize-e {
    top: 8px; right: -4px; bottom: 8px; width: 8px;
    cursor: e-resize;
}

.resize-w {
    top: 8px; left: -4px; bottom: 8px; width: 8px;
    cursor: w-resize;
}

.resize-ne {
    top: -4px; right: -4px; width: 14px; height: 14px;
    cursor: ne-resize;
}

.resize-nw {
    top: -4px; left: -4px; width: 14px; height: 14px;
    cursor: nw-resize;
}

.resize-se {
    bottom: -4px; right: -4px; width: 14px; height: 14px;
    cursor: se-resize;
}

.resize-sw {
    bottom: -4px; left: -4px; width: 14px; height: 14px;
    cursor: sw-resize;
}


/* --- Fake dropdown menu --- */

.edge-fake-menu {
    position: absolute;
    top: 100%;
    right: 4px;
    width: 260px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16), 0 1px 4px rgba(0,0,0,0.08);
    padding: 4px 0;
    z-index: 100;
    animation: menu-appear 0.12s ease-out;
}

@keyframes menu-appear {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.efm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    font-size: 13px;
    color: #242424;
    cursor: default;
    user-select: none;
}

.efm-item:hover {
    background: #f0f0f0;
}

.efm-shortcut {
    font-size: 12px;
    color: #888;
}

.efm-sep {
    height: 1px;
    background: #e8e8e8;
    margin: 4px 0;
}

.efm-zoom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.efm-zoom-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}

.efm-zoom-btn {
    width: 28px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: default;
    font-size: 16px;
    color: #242424;
}

.efm-zoom-btn:hover {
    background: #e0e0e0;
}

.efm-zoom-val {
    font-size: 12px;
    color: #666;
    min-width: 36px;
    text-align: center;
}


/* --- Lock / Certificate popup --- */

.btn-lock {
    cursor: pointer !important;
    border: none;
    background: transparent;
    padding: 0;
}

.btn-lock:hover {
    background: #e8e8e8;
    border-radius: 4px;
}

.edge-lock-popup {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16), 0 1px 4px rgba(0,0,0,0.08);
    padding: 0;
    z-index: 200;
    animation: menu-appear 0.12s ease-out;
    margin-top: 6px;
}

.lock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 13px;
    font-weight: 600;
    color: #242424;
}

.lock-desc {
    padding: 8px 14px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    border-bottom: 1px solid #e8e8e8;
}

.lock-valid {
    color: #2e7d32 !important;
}

.lock-detail {
    padding: 8px 0;
}

.lock-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 14px;
    font-size: 12px;
}

.lock-label {
    color: #666;
}

.lock-val {
    color: #242424;
    font-weight: 500;
}

.lock-footer {
    padding: 10px 14px;
    font-size: 12px;
    color: #0078d4;
    border-top: 1px solid #e8e8e8;
    cursor: default;
}

.lock-footer:hover {
    background: #f0f0f0;
    border-radius: 0 0 8px 8px;
}


/* --- Profile popup --- */

.edge-profile-popup {
    position: absolute;
    top: 100%;
    right: 30px;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16), 0 1px 4px rgba(0,0,0,0.08);
    padding: 0;
    z-index: 100;
    animation: menu-appear 0.12s ease-out;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
}

.profile-avatar {
    color: #666;
    flex-shrink: 0;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #242424;
}

.profile-email {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.profile-sep {
    height: 1px;
    background: #e8e8e8;
}

.profile-item {
    padding: 9px 14px;
    font-size: 13px;
    color: #242424;
    cursor: default;
}

.profile-item:hover {
    background: #f0f0f0;
}

.profile-clickable {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-signin {
    color: #0078d4 !important;
    font-weight: 600;
}


/* --- Extensions popup --- */

.edge-ext-popup {
    position: absolute;
    top: 100%;
    right: 60px;
    width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16), 0 1px 4px rgba(0,0,0,0.08);
    padding: 8px 0;
    z-index: 100;
    animation: menu-appear 0.12s ease-out;
}

.ext-header {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 8px;
}

.ext-empty {
    padding: 16px 14px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

.ext-link {
    padding: 8px 14px;
    font-size: 13px;
    color: #0078d4;
    cursor: default;
    border-top: 1px solid #e8e8e8;
    margin-top: 8px;
}

.ext-link:hover {
    background: #f0f0f0;
}


/* --- Panels (favorites, history, settings, etc.) --- */

.share-panel {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 50;
    display: flex;
    flex-direction: column;
    animation: menu-appear 0.15s ease-out;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
}

.panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #242424;
}

.panel-close {
    font-size: 18px;
    cursor: default;
    color: #666;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.panel-close:hover { background: #e8e8e8; }

.panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.panel-list-empty {
    color: #888;
    font-size: 13px;
    text-align: center;
    padding: 32px 0;
}

.panel-list-hint {
    color: #aaa;
    font-size: 12px;
    text-align: center;
}

.panel-list-time {
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.panel-newtab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    gap: 24px;
}

.panel-newtab-search input {
    width: 280px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    background: #f4f4f4;
}

.panel-newtab-text {
    font-size: 28px;
    font-weight: 300;
    color: #444;
}

.panel-settings-item {
    padding: 10px 0;
    font-size: 13px;
    color: #242424;
    border-bottom: 1px solid #f0f0f0;
    cursor: default;
}

.panel-settings-item:hover { color: #0078d4; }

.panel-signin-btn {
    background: #0078d4;
    color: #fff;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    cursor: default;
}

/* --- Find bar --- */

.share-findbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.findbar-input {
    flex: 1;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.findbar-input:focus { border-color: #0078d4; }

.findbar-count {
    font-size: 12px;
    color: #888;
}

.findbar-btn {
    font-size: 12px;
    color: #666;
    cursor: default;
    padding: 2px 4px;
    border-radius: 4px;
}

.findbar-btn:hover { background: #e8e8e8; }

.findbar-close {
    font-size: 16px;
    color: #666;
    cursor: default;
    padding: 2px 6px;
    border-radius: 4px;
}

.findbar-close:hover { background: #e8e8e8; }


/* --- Edge loading bar --- */

.edge-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2;
    overflow: hidden;
    background: transparent;
}

.edge-loader.hidden {
    display: none;
}

.edge-loader-bar {
    width: 40%;
    height: 100%;
    background: #0078d4;
    border-radius: 2px;
    animation: edge-load 1.4s ease-in-out infinite;
}

@keyframes edge-load {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(200%); }
    100% { transform: translateX(-100%); }
}



/* --- Drag --- */

.share-window.dragging {
    transition: none;
}

/* --- Close animation after auth --- */

.share-window.closing {
    opacity: 0 !important;
    transform: scale(0.95) translateY(10px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}


/* ================================================================
   DARK MODE — follows system theme
   ================================================================ */

@media (prefers-color-scheme: dark) {

    /* Viewer shell */
    .viewer-shell { background: #1a1a1a; }
    .viewer-topbar { background: #202020; border-bottom-color: #333; }
    .viewer-topbar-title { color: #fff; }
    .viewer-toolbar { background: #202020; border-bottom-color: #333; }
    .viewer-page-info, .viewer-zoom { color: #9c9898; }
    .viewer-content { background: #111; }
    .viewer-avatar { background: #333; }

    /* Share window */
    .share-backdrop { background: rgba(0, 0, 0, 0.6); }
    .share-window { background: #000; box-shadow: 0 8px 32px rgba(0,0,0,0.6); }

    /* Title bar */
    .edge-titlebar { background: #000; }
    .edge-tab { background: #1b1a1a; box-shadow: none; }
    .edge-tab-title { color: #fff; }
    .edge-tab-close:hover { background: #333; }
    .edge-tab-close svg path { stroke: #9c9898; }
    .edge-wc-btn:hover { background: #333; }
    .edge-wc-btn svg path, .edge-wc-btn svg rect { stroke: #9c9898; }
    .edge-wc-btn.close:hover { background: #c42b1c; }
    .edge-wc-btn.close:hover svg path { stroke: #fff; }

    /* Navigation bar */
    .edge-navbar { background: #1b1a1a; border-bottom-color: #333; }
    .edge-nav-btn:hover { background: #333; }
    .edge-nav-btn.pressed { background: #444; }
    .edge-nav-btn svg path, .edge-nav-btn svg circle, .edge-nav-btn svg rect { stroke: #9c9898; fill: none; }
    .edge-nav-btn svg circle[fill="#616161"] { fill: #9c9898; stroke: none; }
    .btn-star .star-filled { fill: #FFB900 !important; stroke: #E6A800 !important; }
    .btn-star .star-outline { stroke: #9c9898 !important; }
    .edge-addressbar { background: #2b2b2b; }
    .edge-lock-icon svg rect { fill: #9c9898; }
    .edge-lock-icon svg path { stroke: #9c9898; fill: none; }
    .edge-url .domain { color: #fff; }
    .edge-url .path { color: #9c9898; }
    .edge-profile-btn { color: #8ab4f8 !important; }
    .btn-extensions svg { color: #e0e0e0; }

    /* Profile popup */
    .edge-profile-popup { background: #1b1a1a; box-shadow: 0 4px 16px rgba(0,0,0,0.6); }
    .profile-avatar { color: #9c9898; }
    .profile-name { color: #fff; }
    .profile-email { color: #9c9898; }
    .profile-sep { background: #333; }
    .profile-item { color: #fff; }
    .profile-item:hover { background: #333; }
    .profile-footer { color: #9c9898; }

    /* Content */
    .edge-content { background: #1b1a1a; }

    /* Menu */
    .edge-fake-menu { background: #1b1a1a; box-shadow: 0 4px 16px rgba(0,0,0,0.6); }
    .efm-item { color: #fff; }
    .efm-item:hover { background: #333; }
    .efm-shortcut { color: #9c9898; }
    .efm-sep { background: #333; }
    .efm-zoom-btn { color: #fff; }
    .efm-zoom-btn:hover { background: #444; }
    .efm-zoom-val { color: #9c9898; }

    /* Lock popup */
    .btn-lock:hover { background: #333; }
    .edge-lock-popup { background: #1b1a1a; box-shadow: 0 4px 16px rgba(0,0,0,0.6); }
    .lock-header { color: #fff; border-bottom-color: #333; }
    .lock-desc { color: #9c9898; border-bottom-color: #333; }
    .lock-valid { color: #4caf50 !important; }
    .lock-label { color: #9c9898; }
    .lock-val { color: #fff; }
    .lock-footer { color: #4fc3f7; border-top-color: #333; }
    .lock-footer:hover { background: #333; }

    /* Extensions popup */
    .edge-ext-popup { background: #1b1a1a; box-shadow: 0 4px 16px rgba(0,0,0,0.6); }
    .ext-header { color: #fff; border-bottom-color: #333; }
    .ext-link { color: #4fc3f7; border-top-color: #333; }
    .ext-link:hover { background: #333; }

    /* Panels */
    .share-panel { background: #1b1a1a; }
    .panel-header { border-bottom-color: #333; }
    .panel-title { color: #fff; }
    .panel-close { color: #9c9898; }
    .panel-close:hover { background: #333; }
    .panel-list-empty { color: #9c9898; }
    .panel-list-time { color: #ccc; }
    .panel-newtab-search input { background: #2b2b2b; border-color: #444; color: #fff; }
    .panel-newtab-text { color: #ccc; }
    .panel-settings-item { color: #fff; border-bottom-color: #333; }
    .share-findbar { background: #1b1a1a; border-bottom-color: #333; }
    .findbar-input { background: #2b2b2b; border-color: #444; color: #fff; }
    .findbar-count { color: #9c9898; }
    .findbar-btn { color: #9c9898; }
    .findbar-btn:hover { background: #333; }
    .findbar-close { color: #9c9898; }
    .findbar-close:hover { background: #333; }

    /* Download button */
    .download-btn-toolbar.enabled { color: #4fc3f7; }
    .download-btn-toolbar.enabled:hover { background: #333; }
}
