:root {
            --gmail-blue: #1a73e8;
            --gmail-red: #d93025;
            --gmail-green: #188038;
            --gmail-yellow: #fbbc04;
            --gmail-grey-50: #f8f9fa;
            --gmail-grey-100: #f1f3f4;
            --gmail-grey-200: #e8eaed;
            --gmail-grey-300: #dadce0;
            --gmail-grey-400: #bdc1c6;
            --gmail-grey-500: #9aa0a6;
            --gmail-grey-600: #80868b;
            --gmail-grey-700: #5f6368;
            --gmail-grey-800: #3c4043;
            --gmail-grey-900: #202124;
            --gmail-white: #ffffff;
            --gmail-shadow-1: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
            --gmail-shadow-2: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
            --gmail-shadow-3: 0 4px 8px 3px rgba(60,64,67,.15), 0 1px 3px rgba(60,64,67,.3);
            --gmail-header-height: 64px;
            --gmail-sidebar-width: 256px;
        }

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

        body {
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: var(--gmail-grey-900);
            background-color: var(--gmail-white);
            overflow: hidden;
            height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: 'kern' 1;
            text-rendering: optimizeLegibility;
        }

        /* Improved typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .logo {
            font-family: 'Inter', 'Product Sans', 'Roboto', arial, sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--gmail-blue);
            text-decoration: none;
            margin-left: 8px;
            margin-right: 30px;
            line-height: 24px;
            letter-spacing: -0.02em;
        }

        /* Header */
        .gmail-header {
            height: var(--gmail-header-height);
            background-color: var(--gmail-white);
            border-bottom: 1px solid var(--gmail-grey-200);
            display: flex;
            align-items: center;
            padding: 8px;
            position: relative;
            z-index: 100;
        }

        .header-left {
            display: flex;
            align-items: center;
            min-width: 0;
            flex-shrink: 0;
        }

        .header-btn {
            width: 48px;
            height: 48px;
            border: none;
            background: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 4px;
            transition: background-color 0.1s ease-in-out;
        }

        .header-btn-admin {
            background-color: var(--gmail-green);
            color: var(--gmail-white);
            border-radius: 4px;
            text-decoration: none;
        }

        .header-btn-admin .material-icons {
            color: inherit;
        }

        .header-btn-admin:hover {
            text-decoration: none;
            color: var(--gmail-white);
        }

        .header-btn:hover {
            background-color: var(--gmail-grey-100);
        }

        .header-btn .material-icons {
            font-size: 24px;
            color: var(--gmail-grey-700);
        }

        /* Search */
        .search-container {
            flex: 1;
            max-width: 720px;
            margin: 0 64px 0 0;
        }

        .search-wrap {
            position: relative;
        }

        .search-box {
            width: 100%;
            height: 48px;
            background-color: var(--gmail-grey-100);
            border: none;
            border-radius: 8px;
            padding: 0 48px;
            font-size: 16px;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 24px;
            color: var(--gmail-grey-900);
            outline: none;
            transition: background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
        }

        .search-box:focus {
            background-color: var(--gmail-white);
            box-shadow: var(--gmail-shadow-1);
        }

        .search-box::placeholder {
            color: var(--gmail-grey-600);
            font-weight: 400;
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: var(--gmail-grey-600);
            pointer-events: none;
        }

        .search-clear {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: none;
            background: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .search-clear:hover {
            background-color: var(--gmail-grey-100);
        }

        .search-clear .material-icons {
            font-size: 18px;
            color: var(--gmail-grey-600);
        }

        .header-right {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* Google Sign-in Button */
        .google-signin-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            background-color: white;
            border: 1px solid var(--gmail-grey-300);
            border-radius: 24px;
            text-decoration: none;
            color: var(--gmail-grey-700);
            font-size: 14px;
            font-weight: 500;
            font-family: 'Inter', 'Google Sans', 'Roboto', arial, sans-serif;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            margin-left: 8px;
        }

        .google-signin-text {
            margin-left: 8px;
        }

        .user-menu {
            position: relative;
        }

        .user-avatar-image {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        .user-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background: var(--gmail-white);
            border: 1px solid var(--gmail-grey-300);
            border-radius: 8px;
            box-shadow: var(--gmail-shadow-2);
            min-width: 200px;
            z-index: 1000;
        }

        .user-dropdown-head {
            padding: 16px;
            border-bottom: 1px solid var(--gmail-grey-200);
        }

        .user-dropdown-name {
            font-weight: 500;
        }

        .user-dropdown-email {
            color: var(--gmail-grey-600);
            font-size: 12px;
        }

        .user-dropdown-role {
            color: var(--gmail-green);
            font-size: 11px;
            font-weight: 500;
            margin-top: 4px;
        }

        .user-dropdown-actions {
            padding: 8px 0;
        }

        .user-dropdown-link {
            display: block;
            padding: 8px 16px;
            text-decoration: none;
            color: var(--gmail-grey-800);
            font-size: 14px;
        }

        .user-dropdown-link:hover {
            background-color: var(--gmail-grey-100);
            text-decoration: none;
            color: var(--gmail-grey-900);
        }

        .user-dropdown-link-icon {
            font-size: 18px;
            vertical-align: middle;
            margin-right: 8px;
        }

        .google-signin-btn:hover {
            background-color: var(--gmail-grey-50);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            color: var(--gmail-grey-800);
        }

        /* Main Layout */
        .main-container {
            display: flex;
            height: calc(100vh - var(--gmail-header-height));
            background-color: var(--gmail-white);
        }

        /* Sidebar */
        .sidebar {
            width: var(--gmail-sidebar-width);
            background-color: var(--gmail-white);
            border-right: 1px solid var(--gmail-grey-200);
            overflow-y: auto;
            flex-shrink: 0;
        }

        .sidebar::-webkit-scrollbar {
            width: 12px;
        }

        .sidebar::-webkit-scrollbar-track {
            background: transparent;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background-color: var(--gmail-grey-400);
            border-radius: 6px;
            border: 2px solid var(--gmail-white);
        }

        .sidebar::-webkit-scrollbar-thumb:hover {
            background-color: var(--gmail-grey-500);
        }

        .sidebar-section {
            margin-bottom: 0;
        }

        .sidebar-section-spaced {
            margin-top: 24px;
        }

        .sidebar-section-content {
            overflow: hidden;
            transition: max-height 0.15s ease-in-out, opacity 0.15s ease-in-out;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            height: 32px;
            padding: 0 16px 0 28px;
            margin: 0 8px 0 0;
            border-radius: 0 16px 16px 0;
            font-size: 14px;
            line-height: 20px;
            font-weight: 500;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-800);
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.1s ease-in-out;
            white-space: nowrap;
            overflow: hidden;
        }

        .sidebar-item:hover {
            background-color: var(--gmail-grey-100);
            text-decoration: none;
            color: var(--gmail-grey-800);
        }

        .sidebar-item.active {
            background-color: #e3f2fd;
            color: var(--gmail-blue);
            font-weight: 600;
        }

        .sidebar-item .material-icons {
            font-size: 20px;
            margin-right: 12px;
            color: inherit;
        }

        .sidebar-count {
            margin-left: auto;
            font-size: 13px;
            line-height: 16px;
            color: var(--gmail-grey-600);
            font-weight: 500;
        }

        .sidebar-item.active .sidebar-count {
            color: var(--gmail-blue);
            font-weight: 600;
        }

        /* Job List Container */
        .job-list-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
            background-color: var(--gmail-white);
        }

        /* Toolbar */
        .toolbar {
            height: 48px;
            padding: 0 20px;
            border-bottom: 1px solid var(--gmail-grey-200);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--gmail-white);
            flex-shrink: 0;
        }

        .toolbar-left {
            display: flex;
            align-items: center;
        }

        .toolbar-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-right: 4px;
            transition: background-color 0.1s ease-in-out;
        }

        .toolbar-btn:hover {
            background-color: var(--gmail-grey-100);
        }

        .toolbar-btn .material-icons {
            font-size: 20px;
            color: var(--gmail-grey-700);
        }

        .jobs-count {
            font-size: 13px;
            color: var(--gmail-grey-600);
            font-weight: 500;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Job List */
        .job-list {
            flex: 1;
            overflow-y: auto;
            background-color: var(--gmail-white);
        }

        .job-list::-webkit-scrollbar {
            width: 12px;
        }

        .job-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .job-list::-webkit-scrollbar-thumb {
            background-color: var(--gmail-grey-400);
            border-radius: 6px;
            border: 2px solid var(--gmail-white);
        }

        .job-list::-webkit-scrollbar-thumb:hover {
            background-color: var(--gmail-grey-500);
        }

        /* Job Items */
        .job-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid var(--gmail-grey-100);
            cursor: pointer;
            position: relative;
            transition: background-color 0.1s ease-in-out;
            min-height: 72px;
        }

        .job-item:hover {
            background-color: var(--gmail-grey-50);
        }

        .job-item.selected {
            background-color: #e8f0fe;
            border-right: 3px solid var(--gmail-blue);
        }

        .job-item.unread {
            background-color: var(--gmail-white);
            border-left: 4px solid var(--gmail-blue);
        }

        .job-item.unread .company-name,
        .job-item.unread .job-title {
            font-weight: 600;
            color: var(--gmail-grey-900);
        }

        .job-item.unread .job-preview {
            font-weight: 500;
            color: var(--gmail-grey-800);
        }

        .job-item:not(.unread) .company-name {
            font-weight: 500;
            color: var(--gmail-grey-800);
        }

        .job-item:not(.unread) .job-title {
            font-weight: 400;
            color: var(--gmail-grey-700);
        }

        .job-item:not(.unread) .job-preview {
            font-weight: 400;
            color: var(--gmail-grey-600);
        }

        /* Company Avatar */
        .company-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid var(--gmail-grey-300);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-700);
            line-height: 20px;
            overflow: hidden;
            position: relative;
        }

        .company-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .company-initial {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .company-initial-hidden {
            display: none;
        }

        /* Job Details */
        .job-details {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .job-header {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
        }

        .company-name {
            font-size: 15px;
            line-height: 22px;
            color: var(--gmail-grey-900);
            font-weight: 500;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            margin-right: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 220px;
            flex-shrink: 0;
        }

        .job-title {
            font-size: 14px;
            line-height: 20px;
            color: var(--gmail-grey-700);
            font-weight: 400;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            flex: 1;
            margin-right: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .job-time {
            font-size: 12px;
            line-height: 18px;
            color: var(--gmail-grey-600);
            margin-left: auto;
            flex-shrink: 0;
            white-space: nowrap;
            background-color: var(--gmail-grey-100);
            padding: 3px 8px;
            border-radius: 12px;
            font-weight: 500;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .job-preview {
            font-size: 13px;
            line-height: 18px;
            color: var(--gmail-grey-700);
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: calc(100% - 40px);
        }

        /* Job Indicators */
        .job-indicator {
            position: absolute;
            top: 12px;
            right: 16px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .job-indicator .material-icons {
            font-size: 14px;
        }

        .job-indicator.saved-indicator {
            background-color: var(--gmail-blue);
            color: white;
        }

        .job-indicator.starred-indicator {
            background-color: var(--gmail-yellow);
            color: white;
            right: 44px;
        }

        .job-item.saved.starred .saved-indicator {
            right: 72px;
        }

        /* First and last job item spacing */
        .job-item:first-child {
            margin-top: 0;
        }

        .job-item:last-child {
            margin-bottom: 0;
        }

        /* Detail View - FIXED: Added .active class and proper styles */
        .job-detail-view {
            width: 50%;
            border-left: 1px solid var(--gmail-grey-200);
            background-color: var(--gmail-white);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .job-detail-view.active {
            display: flex;
        }

        /* Job Detail View Content Styles */
        .job-detail-header {
            padding: 24px;
            border-bottom: 1px solid var(--gmail-grey-200);
            background-color: var(--gmail-white);
            flex-shrink: 0;
        }

        .job-detail-company {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            position: relative;
        }

        .job-detail-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid var(--gmail-grey-300);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
            font-size: 18px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-700);
            overflow: hidden;
        }

        .job-detail-company-info h2 {
            font-size: 18px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-900);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .job-detail-date {
            font-size: 13px;
            color: var(--gmail-grey-600);
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 400;
        }

        .job-detail-title {
            font-size: 24px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-900);
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .job-detail-content {
            flex: 1;
            overflow-y: auto;
            padding: 0;
        }

        .job-section {
            border-bottom: 1px solid var(--gmail-grey-100);
        }

        .job-section-header {
            padding: 20px 24px 12px;
            background-color: var(--gmail-grey-50);
        }

        .job-section-title {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-900);
        }

        .job-section-title .material-icons {
            font-size: 20px;
            margin-right: 8px;
            color: var(--gmail-grey-700);
        }

        .job-section-content {
            padding: 16px 24px 24px;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--gmail-grey-800);
        }

        .job-content-prewrap {
            white-space: pre-wrap;
            line-height: 1.6;
        }

        .job-content-regular {
            line-height: 1.6;
        }

        .job-section-content-apply {
            padding: 32px;
            text-align: center;
            border-bottom: none;
        }

        .job-apply-hint {
            margin-top: 16px;
            color: var(--gmail-grey-600);
            font-size: 12px;
        }

        .job-apply-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background-color: var(--gmail-blue);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 14px;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 2px 4px rgba(26, 115, 232, 0.3);
        }

        .job-apply-btn:hover {
            background-color: #1557b0;
            box-shadow: 0 4px 8px rgba(26, 115, 232, 0.4);
            text-decoration: none;
            color: white;
            transform: translateY(-1px);
        }

        .job-apply-btn .material-icons {
            margin-right: 8px;
            font-size: 18px;
        }

        /* Empty State */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            padding: 48px 24px;
        }

        .empty-state .material-icons {
            font-size: 64px;
            color: var(--gmail-grey-400);
            margin-bottom: 16px;
        }

        .empty-state h3 {
            font-size: 20px;
            font-weight: 600;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--gmail-grey-700);
            margin-bottom: 8px;
        }

        .empty-state p {
            font-size: 14px;
            color: var(--gmail-grey-600);
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            max-width: 300px;
            line-height: 1.5;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .job-detail-view {
                position: fixed;
                top: var(--gmail-header-height);
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                z-index: 1000;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
            }

            .job-detail-view.active {
                transform: translateX(0);
            }

            .sidebar {
                position: fixed;
                left: -100%;
                top: var(--gmail-header-height);
                height: calc(100vh - var(--gmail-header-height));
                z-index: 999;
                transition: left 0.3s ease-in-out;
                box-shadow: var(--gmail-shadow-2);
            }

            .sidebar.open {
                left: 0;
            }

            .sidebar-overlay {
                position: fixed;
                top: var(--gmail-header-height);
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-in-out;
            }

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

        @media (max-width: 480px) {
            .gmail-header {
                padding: 8px 6px;
            }

            .logo {
                margin-right: 0;
                display: inline-block;
                max-width: 84px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 22px;
                line-height: 24px;
            }

            .search-container {
                display: none;
            }

            .header-btn {
                width: 40px;
                height: 40px;
                margin: 0 1px;
            }

            #refreshBtn,
            #settingsBtn {
                display: none;
            }

            .google-signin-btn {
                margin-left: 6px;
                padding: 8px 12px;
                min-height: 40px;
            }

            .google-signin-btn svg,
            .google-signin-text {
                display: none;
            }

            .google-signin-btn::after {
                content: "Sign in";
                font-size: 13px;
                font-weight: 600;
                line-height: 1;
            }
        }

        /* Improved focus states for accessibility */
        .job-item:focus {
            outline: 2px solid var(--gmail-blue);
            outline-offset: -2px;
        }

        .sidebar-item:focus {
            outline: 2px solid var(--gmail-blue);
            outline-offset: -2px;
        }

        .header-btn:focus,
        .toolbar-btn:focus {
            outline: 2px solid var(--gmail-blue);
            outline-offset: 2px;
        }

        /* Better loading states */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading .material-icons {
            animation: spin 1s linear infinite;
        }

        /* AdSense In-Feed Ad Styling */
        .job-item.ad-container {
            background-color: var(--gmail-grey-50);
            border-left: 3px solid var(--gmail-green);
            position: relative;
            transition: background-color 0.1s ease-in-out;
        }

        .job-item.ad-container.ad-container-static {
            border: none;
            cursor: default;
        }

        .job-item.ad-container:hover {
            background-color: var(--gmail-grey-100);
        }

        .job-item.ad-container .adsbygoogle {
            min-height: 60px;
            width: 100%;
            display: block;
        }

        .adsbygoogle.adsbygoogle-block {
            display: block;
        }

        /* Sponsored label for ads */
        .job-item.ad-container::before {
            content: "Sponsored";
            position: absolute;
            top: 8px;
            right: 12px;
            font-size: 10px;
            font-weight: 500;
            color: var(--gmail-grey-600);
            background-color: rgba(255, 255, 255, 0.9);
            padding: 2px 6px;
            border-radius: 8px;
            z-index: 3;
            font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Toast Notification Styles */
        .toast-notification {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gmail-grey-800);
            color: white;
            padding: 12px 24px;
            border-radius: 24px;
            z-index: 1000;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 1;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .toast-notification.hide {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }

        .mobile-back-btn-floating {
            position: absolute;
            top: 16px;
            right: 16px;
        }
