/* Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body{
	height: auto;
}
body {
	font-family: 'Nunito', sans-serif;
	background: #D6E7FF;
	color: #000;
	line-height: 1.5;
	position: relative;
	overflow-x: hidden;
}
.ai-content-warning {
    margin: 0; /* Removing any default margins */
    /* Add any other styles you want for this paragraph */
	font-size: 0.75rem;
	line-height: 1rem;
	text-align: center;
	color: #2181FF;
}

/* Dashboard Improvements - Conversion Optimization */

/* Social Proof Stats in Upload Modal - Elegant */
.social-proof-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(33, 129, 255, 0.05) 0%, rgba(26, 115, 232, 0.08) 100%);
    border-radius: 10px;
    border: 1px solid rgba(33, 129, 255, 0.15);
    box-shadow: inset 0 1px 3px rgba(33, 129, 255, 0.1);
}

.social-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.social-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(33, 129, 255, 0.2), transparent);
}

.stat-number {
    font-weight: 800;
    font-size: 1.3em;
    color: #1a73e8;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8em;
    color: #5a6c7d;
    font-weight: 500;
    line-height: 1.2;
}

/* Enhanced CTA Button */
.btn-primary-action {
    background: linear-gradient(135deg, #2181FF, #1a73e8);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(33, 129, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-action:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 129, 255, 0.4);
}

/* Urgency Indicator */
.urgency-indicator {
    text-align: center;
    margin-top: 10px;
}

.urgency-text {
    color: #ff4444;
    font-weight: bold;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Onboarding Progress */
.onboarding-progress {
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.progress-title {
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
}

.progress-percentage {
    color: #2181FF;
    font-weight: bold;
    font-size: 0.85em;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2181FF, #1a73e8);
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.step {
    font-size: 0.75em;
    color: #666;
    opacity: 0.6;
}

.step.completed {
    color: #22c55e;
    opacity: 1;
}

.step.current {
    color: #2181FF;
    opacity: 1;
    font-weight: bold;
}

/* Enhancement Sections in Matches Tab */
.matches-enhancement-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5e9;
    /* Smooth transitions for show/hide animations */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
    display: block;
    visibility: visible;
}

/* Enhancement sections when being hidden */
.matches-enhancement-section.hiding {
    opacity: 0;
    transform: translateY(-10px);
}

/* Enhancement sections when visible (default state for new users) */
.matches-enhancement-section.showing {
    opacity: 1;
    transform: translateY(0);
    display: block;
    visibility: visible;
}

/* Hide enhancement sections when job cards are present - Multiple approaches for compatibility */
/* Modern approach using :has() selector */
#main_job_content_container:has(.wd_job_bx[data-job-id]) #empty-state-message,
#main_job_content_container:has(.wd_job_bx[data-job-id]) #onboarding-progress-section,
#main_job_content_container:has(.wd_job_bx[data-job-id]) #platform-activity-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Fallback: Class-based approach when JavaScript detects jobs */
.has-job-cards #empty-state-message,
.has-job-cards #onboarding-progress-section,
.has-job-cards #platform-activity-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Empty State Container - Now in Main Content Area */
.empty-state-container {
    background: white;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.empty-state-content {
    max-width: 100%;
    margin: 0 auto;
}

.empty-state-icon {
    font-size: 2em;
    margin-bottom: 8px;
}

.empty-state-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.empty-state-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 0.9em;
}

.empty-state-benefits {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
}

.benefit-icon {
    font-size: 1em;
}

.benefit-text {
    color: #333;
    font-weight: 500;
    font-size: 0.85em;
}

.empty-state-cta {
    background: linear-gradient(135deg, #2181FF, #1a73e8);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.empty-state-cta:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    transform: translateY(-2px);
}

/* Platform Activity - Updated for Main Content Area */
.platform-activity {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.activity-title {
    font-size: 1em;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.activity-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-number {
    font-weight: bold;
    color: #FFD700;
    font-size: 1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.activity-label {
    font-size: 0.75em;
    color: rgba(255,255,255,0.9);
    text-align: right;
    flex: 1;
}

/* Testimonial - Updated for Gradient Background */
.recent-testimonial {
    margin-top: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    border-left: 3px solid #FFD700;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.8em;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3px;
    line-height: 1.3;
}

.testimonial-author {
    font-size: 0.7em;
    color: rgba(255,255,255,0.8);
    text-align: right;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bar-left-v1 { flex: 1 1 auto; }
    .agent-visualization-section { padding: 0.5rem 0.25rem; }
    .social-proof-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .empty-state-benefits {
        align-items: center;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .activity-stats {
        gap: 4px;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 1px;
        padding: 3px 0;
    }
    
    .activity-label {
        text-align: center;
        font-size: 0.7em;
    }
    
    .activity-number {
        font-size: 0.9em;
    }
    
    .empty-state-container {
        padding: 8px;
        margin: 8px 0;
    }
    
    .onboarding-progress {
        padding: 8px;
        margin: 8px 0;
    }
    
    .platform-activity {
        padding: 10px;
    }
}

/* Onboarding Tour Styles */
.onboarding-tooltip {
    position: fixed;
    z-index: 10001;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-width: 300px;
    animation: tooltipFadeIn 0.3s ease;
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.tooltip-content {
    padding: 20px;
}

.tooltip-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.tooltip-text {
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    font-size: 0.9em;
}

.tooltip-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.tooltip-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.skip-btn {
    background: #f0f0f0;
    color: #666;
}

.skip-btn:hover {
    background: #e0e0e0;
}

.next-btn {
    background: linear-gradient(135deg, #2181FF, #1a73e8);
    color: white;
    font-weight: bold;
}

.next-btn:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
}

.tooltip-progress {
    text-align: center;
    font-size: 0.8em;
    color: #888;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

.tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    animation: overlayFadeIn 0.3s ease;
}

/* CV Upload Section Protection - Ensure it stays above tour overlays */
#upload_resume {
    /* position: relative; */
    z-index: 10002 !important;
}

/* Ensure upload form elements are always interactive */
#upload_resume input,
#upload_cv_btn button,
#upload_cv_btn .btn {
    position: relative;
    z-index: 10003 !important;
    pointer-events: auto !important;
}

/* Upload area specific protection */
#upload_resume .file-upload-container,
#upload_resume .button-container {
    position: relative;
    z-index: 10003 !important;
}

/* Elegant upload form styling */
#upload_resume .file-upload-container {
    margin: 20px 0;
    padding: 25px 20px;
    border: 2px dashed rgba(33, 129, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(135deg, rgba(33, 129, 255, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

#upload_resume .file-upload-container:hover,
#upload_resume .file-upload-container.active {
    border-color: #2181FF;
    background: linear-gradient(135deg, rgba(33, 129, 255, 0.08) 0%, rgba(240, 247, 255, 0.9) 100%);
    box-shadow: 0 4px 15px rgba(33, 129, 255, 0.15);
    transform: translateY(-2px);
}

#upload_resume .file-upload-icon svg {
    color: #2181FF;
    transition: all 0.3s ease;
}

#upload_resume .file-upload-container:hover .file-upload-icon svg {
    transform: scale(1.1);
    color: #1a73e8;
}

#upload_resume .upload-prompt {
    margin: 15px 0 8px 0;
    font-size: 1em;
    color: #2c5282;
    font-weight: 600;
}

#upload_resume .upload-hint {
    margin: 0;
    font-size: 0.85em;
    color: #718096;
    font-weight: 500;
}

#upload_resume .button-container {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

#upload_resume .button-container .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

#upload_resume .btn-outline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0 !important;
}

#upload_resume .btn-outline:hover:not(:disabled) {
    background: #f7fafc;
    border-color: #cbd5e0 !important;
    color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#upload_resume .btn-primary-action:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(33, 129, 255, 0.4);
}

#upload_resume .disclaimer {
    font-size: 0.8em;
    color: #718096;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
    padding: 0 10px;
}

/* Bookmarklet Section - Inline behavior matching upload_resume */
#bookmarklet_section {
    z-index: 10002 !important;
}

/* Ensure bookmarklet elements are always interactive */
#bookmarklet_section .bookmarklet-button,
#bookmarklet_section .step,
#bookmarklet_section .benefit-card {
    position: relative;
    z-index: 10003 !important;
    pointer-events: auto !important;
}

.bookmarklet-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(33, 129, 255, 0.08), 0 1px 4px rgba(0,0,0,0.05);
    margin: 15px;
    position: relative;
    z-index: 10100;
    width: calc(100% - 30px);
    border: 1px solid rgba(33, 129, 255, 0.1);
    overflow: hidden;
    max-height: 80vh;
    overflow-y: auto;
}

.bookmarklet-section .modal-body {
    padding: 25px;
    position: relative;
}

.bookmarklet-section .section-heading {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #1a73e8;
    text-align: center;
}

.bookmarklet-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.bookmarklet-button-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.bookmarklet-button-section h6 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.bookmarklet-button-section p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.bookmarklet-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    cursor: move;
    border: 2px dashed rgba(255,255,255,0.3);
}

.bookmarklet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #3a55ad 0%, #2181FF 100%);
}

.bookmarklet-button i {
    margin-right: 8px;
}

.drag-instructions {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
}

.arrow-animation {
    display: inline-block;
    animation: bounce 2s infinite;
    margin-left: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.bookmarklet-section .how-to-section {
    margin-bottom: 25px;
}

.bookmarklet-section .how-to-section h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.bookmarklet-section .how-to-section .step {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bookmarklet-section .how-to-section .step:hover {
    background: #e9ecef;
}

.bookmarklet-section .how-to-section .step-content strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.bookmarklet-section .how-to-section .step-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bookmarklet-section .supported-sites {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.bookmarklet-section .supported-sites h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.bookmarklet-section .sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.bookmarklet-section .site-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    font-size: 0.9rem;
}

.bookmarklet-section .site-item i {
    color: #27ae60;
    margin-right: 8px;
    font-size: 1rem;
}

.bookmarklet-section .site-item span {
    color: #2c3e50;
    font-weight: 500;
}

.bookmarklet-section .benefits {
    margin-top: 25px;
}

.bookmarklet-section .benefits h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.bookmarklet-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.bookmarklet-section .benefit-card {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bookmarklet-section .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.bookmarklet-section .benefit-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.bookmarklet-section .benefit-card strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.bookmarklet-section .benefit-card p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tour-highlight {
    position: relative;
    z-index: 10001;
    box-shadow: 0 0 0 4px rgba(33, 129, 255, 0.3), 0 0 20px rgba(33, 129, 255, 0.2);
    border-radius: 8px;
    animation: tourHighlight 2s infinite;
}

@keyframes tourHighlight {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tour-complete-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    animation: messageSlideIn 0.5s ease;
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.message-content {
    padding: 30px;
    text-align: center;
    max-width: 300px;
}

.message-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.message-content h3 {
    color: #333;
    margin: 0 0 10px 0;
}

.message-content p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.tour-restart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2181FF;
    color: white;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(33, 129, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.tour-restart-btn:hover {
    background: #1a73e8;
    transform: scale(1.1);
}

/* Modal fixes to ensure proper layering */
.modal {
    z-index: 10050 !important;
}

.modal-backdrop {
    z-index: 10040 !important;
}

/* Ensure empty state doesn't interfere with modals */
.empty-state-container {
    position: relative;
    z-index: 1;
}

/* Fix any potential overlay issues */
.ds_rightbar {
    position: relative;
    z-index: 2;
}

/* Ensure profile dropdown appears above dashboard content */
.header {
    z-index: 10000;
}

.header .navbar {
    position: relative;
    /* z-index: 10001; */
}

.header .navbar .wrapper_other .menu-profile {
    position: relative;
    /* z-index: 10002; */
}

.header .navbar .wrapper_other .dropdown {
    position: relative;
    /* z-index: 10003; */
}

.nodes-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  padding-top: 10px;
}
/* Upload Resume Section Styling - Elegant Compact Design */
.upload-resume-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(33, 129, 255, 0.08), 0 1px 4px rgba(0,0,0,0.05);
    margin: 15px;
    position: relative;
    z-index: 10100;
    width: calc(100% - 30px);
    border: 1px solid rgba(33, 129, 255, 0.1);
    overflow: hidden;
}

.upload-resume-section .modal-body {
    padding: 25px;
    position: relative;
}

/* Compact section heading and description */
.upload-resume-section .section-heading {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #1a73e8;
    text-align: center;
}

.upload-resume-section .section-description {
    font-size: 0.95em;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #4a5568;
    text-align: center;
}
a, a:hover{
	color: #1A1A1A;
	text-decoration: none;
	-webkit-transition: ease-in-out 0.5s;
	-moz-transition: ease-in-out 0.5s;
	-o-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}
ul{
	/* list-style: none; */
	padding-left: 0;
	margin-bottom: 0;
color: #000;
}
option{
	color: #000;
}
.favicon{
	width: 16px;
	height: 16px;
	object-fit: contain;
}
html {
scroll-behavior: smooth;
}
main{
	padding: 70px 0 0;
}
/*----- HEADER -----*/
.hidden {
	display: none;
}
header{
    background: #FFF;
	box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: all .3s ease;
    padding: 8px 0;
}
header .navbar{    
	padding: 0px;
	flex-flow: nowrap;
}
.repn_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
header .navbar .brand img{	
	object-fit: contain;
	/*max-width: 100%;
	height: 41px;*/
}
header .navbar .menu {
	display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: auto;
	justify-content: center;
	align-items: center;
}
header .navbar .menu-item a{	
	font-size: 18px;
	font-weight: 500;
	color: #10194A;
    font-weight: 500;
	display: inline-flex;
	align-items: center;
	margin-right: 26px;
	padding: 8px 0;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    white-space: nowrap;
}
.menu-icon svg{width: 20px;height: 20px; margin-right: 10px;}
header .navbar .menu-item a:hover, header .navbar .menu-item.active a{
	color: #2181FF;
}
header .navbar .menu-item a:hover .menu-icon svg path, header .navbar .menu-item.active a .menu-icon svg path{
	fill: #2181FF;
}
header .navbar .menu-item:last-child{margin-right: 0;}
.menu-profile{
	position: relative;
	border-radius: 100px;
	background: #F8F8F8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	width: fit-content;
	gap: 10px;
}
.menu-profile img{
	width: 38px;
	height: 38px;
	object-fit: contain;
}
.profl-dropdwn{
	color: #10194A;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.18px;
	background: transparent;
	cursor: pointer;
	display: flex; /* Ensure that the SVG aligns with the text */
    align-items: center; /* Align items for SVG and text */
}
.profl-dropdwn:focus{
	outline: 0;
	box-shadow: 0;
}
.profl-dropdwn.dropdown-toggle::after{
	display: none;
}
.dropdown-icon svg{
	width: 20px;
	height: 20px;
	margin: -3px 0 0 8px;
}
.resp-item{display: none;}
/*--------Dashboard Side Menu[ START ]------*/
.ds_leftbar_main {
    background: #FFF;
	box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.05);
    width: 420px;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    height: 100vh;
	overflow-y: auto;
	overflow-x: auto;
}
.leftbar {
    margin-top: 55px;
	width: 380px;
	height: auto;

}
#explore {
	overflow-y: auto;
}
 
.leftbar .nav{
	border-bottom: 1.5px solid #E8E8E8;
	justify-content: space-between;
}
.leftbar .nav-link{
	border-radius: 0!important;
	color: #788495;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	padding: 20px 15px;
	position: relative;
}
.leftbar .nav-pills .nav-link.active, .leftbar  .nav-pills .show>.nav-link{
	background: transparent;
	border-radius: 0 !important;
	color: #2181FF;
	position: relative;
}
.leftbar .nav-pills .nav-link.active::before{
	position: absolute;
	border-bottom: 3.5px solid #2181FF;
	border-radius: 90px;
	bottom: -1.5px;
	content: '';
	left: 0;
	width: 100%;
	margin: 0 auto;
}
.leftbar .tab-content{
	padding: 10px 5px;
	overflow-y: scroll;
	height: 80vh;
	width: 100%;
}
#job_details .wd-job-tab .nav {overflow-x: scroll;}
#style-3::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: transparent;
}

#style-3::-webkit-scrollbar
{
	width: 0px;
	background-color: transparent;
}

#style-3::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
.wd_job_bx{
	border-radius: 10px;
	border: 2px solid #E4E4E4;
	background: #FFF;
	padding: 10px;
	margin-bottom: 1rem;
	animation: fadeIn 0.3s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.wd_job_bx.active{
	border: 2px solid #E4E4E4;
}

/* Style for the loading indicator */
.scroll-loading-indicator {
	padding: 10px;
	margin: 10px 0;
	color: #666;
	font-size: 14px;
	text-align: center;
  }
  
  /* Add some styling to the scroll sentinel */
  #scroll-sentinel {
	width: 100%;
	height: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
  }
  
  /* Initial loading indicator styling */
  .initial-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	color: #666;
  }
  
  /* Empty state and error message styling */
  .no-jobs-message, 
  .error-message {
	padding: 40px 20px;
	text-align: center;
	background-color: #f8f9fa;
	border-radius: 8px;
	margin: 20px 0;
	color: #6c757d;
  }
  
  .error-message {
	color: #dc3545;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
  }
  
  /* Highlight the selected job card */
  .wd_job_bx.selected-job {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  }
  
  /* Style for dismiss animation */
  .wd_job_bx.dismissing {
	opacity: 0;
	transform: translateX(20px);
  }

.wd_job_bx:hover{
	border: 1.5px solid #E4E4E4;
	cursor: pointer;
}
/* Optional: Add hover state to make the dismiss button more visible */
.wd_job_bx:hover .dismiss-btn {
    opacity: 1;
}



.wd_job_bx-card {
    border: 2px solid #E4E4E4;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}
.wd_job_top, .wd_job_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wd_job_lft h3{
	color: #10194A;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 6px;
}
.wd_job_lft span{
	color: #788495;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	display: block;
  margin-bottom: 4px;
}
.wd_job_icon{
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: rgb(33 129 255 / 20%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.wd_job_mdl {
	margin: 10px auto 12px;
}
.wd_job_mdl h4{
	color: #10194A;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	grid-gap: 8px;
	align-items: flex-start;
	line-height: normal;
	margin-bottom: 0;
}
.wd_job_mdl h6{
	color: #788495;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	display: block;
}
.wd_job_mdl ul{
	display: inline-block;
	margin: 10px 0 0;
}
.wd_job_mdl ul li{
	display: inline-block;
	color: #10194A;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	padding: 0 20px;
	position: relative;
}
.wd_job_mdl ul li::before{
	background: #10194A;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 6px 0 0;
}
.wd_job_btm span{
	border-radius: 7px;
	background: #DCEFF4;
	color: #10194A;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 5px 15px 5px 5px;
}
.wd_job_btm p{
	color: #2181FF;
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 0;
}
.wd_explore h4{
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.explore_form .form-group {
	position: relative;
	margin-bottom: 10px;
}
.explore_form .form-group .form-control{
	border-radius: 10px;
	border: 1px solid #E5E5E5;
	background: #F9F9F9;
	height: auto;
}
.wd_srch_bx{
	border-radius: 10px;
	background: #2181FF;
	border:2px solid #2181FF;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.16);
	padding: 8px 90px;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	margin: 30px auto 0;
	text-align: center;
	display: block;
	text-transform: capitalize;
	width: fit-content;
}

.save-btn-item {
	background-color: #e9ecef;

	background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	border-radius: 4px;
	border: 1px solid;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.16);
	padding: 4px;
	font-size: 16px;
	font-weight: 700;
	margin: 30px auto 0;
	text-align: center;
	display: block;
	text-transform: capitalize;
	width: fit-content;
	cursor: pointer;
}


.save-btn-item:hover {
	/* background: linear-gradient(270deg, #9de7ae 2.88%, #bbe1e7 134.48%); */
	background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	/* background: linear-gradient(270deg, #bbe1e7 2.88%, #b4bcdb 134.48%); */
	transition : all 0.3s ease-in-out;
	transform : scale(1.025);
	box-shadow : 0 0 10px rgba(0,0,0,0.5);
	z-index : 1000;

}

.wd_srch_bx:hover{
	background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
}
.mobile-header {
    display: none;
}
/*--------End Dashboard Side Menu[ END ]------*/
/* dashboard right side */
.ds_rightbar {
	padding:5px 20px 0 20px;
    margin-left: 420px;
}
.job-stats-col {
	padding:2px 2px 0 2px;

}

/* ===========================
   Dashboard Sidebar Controls (Restore Buttons) - Refined Minimal Design
   =========================== */

.dashboard-header-controls {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10001; /* Higher than navbar (10000) to prevent controls from being hidden */
    pointer-events: none; /* Allow clicks to pass through empty space */
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force mobile-safe position regardless of saved coordinates */
.dashboard-header-controls.force-mobile {
    right: 16px !important;
    left: auto !important;
    top: auto !important;
    bottom: 72px !important;
    transform: none !important;
}

.dashboard-header-controls.dragging {
    cursor: grabbing !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    transition: none; /* Disable transition during drag for immediate feedback */
}

/* Drag Handle - Subtle and Hidden Until Hover */
.drag-handle {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #4A5568;
    padding: 6px;
    border-radius: 10px 10px 0 0;
    cursor: grab;
    pointer-events: auto;
    display: none; /* Hidden by default, shown via JS when buttons are visible */
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Show drag handle on hover of the entire controls container */
.dashboard-header-controls:hover .drag-handle {
    opacity: 1;
}

.drag-handle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.06);
}

.drag-handle:active,
.dashboard-header-controls.dragging .drag-handle {
    cursor: grabbing;
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

.drag-handle svg {
    color: #4A5568;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.drag-handle:hover svg {
    opacity: 0.9;
}

.restore-section-btn {
    display: none; /* Hidden by default, shown via JS when section dismissed */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #2D3748;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.3s ease-out;
    pointer-events: auto; /* Re-enable clicks on buttons */
    min-width: 42px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.restore-section-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12),
                0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 85, 104, 0.2);
}

.restore-section-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.06);
}

.restore-icon {
    font-size: 20px;
    line-height: 1;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    filter: grayscale(20%);
}

.restore-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #4A5568;
}

.restore-badge {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    color: white;
    padding: 3px 5px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
    writing-mode: horizontal-tb;
    margin-top: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsiveness for Sidebar Controls */
@media (max-width: 768px) {
    .dashboard-header-controls {
        /* Default position for mobile */
        right: 16px;
        bottom: 72px;
    }

    .restore-section-btn {
        padding: 7px 5px;
        min-width: 38px;
        font-size: 11px;
    }

    .restore-icon {
        font-size: 18px;
    }

    .restore-label {
        font-size: 9px;
    }

    .drag-handle {
        padding: 5px;
        opacity: 0.6; /* Slightly more visible on mobile for discoverability */
    }

    .drag-handle svg {
        width: 14px;
        height: 14px;
    }
}

/* Ensure buttons stay within viewport on very small screens */
@media (max-width: 480px) {
    .dashboard-header-controls {
        right: 12px;
        bottom: 64px;
    }

    .restore-section-btn {
        padding: 6px 4px;
        min-width: 34px;
    }
}

/* ===========================
   Dismiss Section Buttons
   =========================== */

.dismiss-section-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.dismiss-section-btn:hover {
    opacity: 1;
    background: rgba(255, 59, 48, 0.1);
}

/* Pin toggle */
.pin-section-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-section-btn:hover {
    opacity: 1;
    background: rgba(33, 129, 255, 0.08);
}

.pin-section-btn.active {
    opacity: 1;
    background: rgba(33, 129, 255, 0.15);
}

.dismiss-section-btn svg {
    color: #64748b;
    transition: color 0.2s ease;
}

.dismiss-section-btn:hover svg {
    color: #ff3b30;
}

/* ===========================
   Section Dismissed State
   =========================== */

.feed-dismissed {
    display: none !important;
}

.stats-dismissed {
    display: none !important;
}

/* Position dismiss button for stats section */
.stats-container .agent-identity-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Position dismiss button for feed section */
.agent-actions-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-dets-col {
	padding:2px 2px 0 2px;
}

.ds_navitem {
	padding:16px 20px 0 20px;
}

.wd-white-box{
	border-radius: 14px;
	background: #FFF;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
	padding: 20px;
	margin-bottom: 16px;
}
.ds-welcome-cv-review-section{
	border-radius: 14px;
	background: #FFF;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
	padding: 10px;
	margin-bottom: 16px;
	width: 100%;
	flex-shrink: 0;
	border: 2px solid #E4E4E4;
}
#jobs_nav {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.wd-white-box-compact{
	border-radius: 14px;
	background: #FFF;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
	padding: 5px;
	margin-bottom: 5px;
}

.job-stats-container {
	padding: 12px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }
.wd-main-title{
	color: #10194A;	
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.wd-main-title-compact{
	color: #10194A;	
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}
.wd-wlcome-side{
	display: flex;
	align-items: left;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
}
.wd-side-line{position: relative;}
.wd-side-line::after{
	display: none;
}
.wd-side-lft{
	display: flex;
	align-items: left;
	flex-direction: column;
	padding: 4px;
}
.wd-side-lft-items{
	display: flex;
	align-items: left;
	flex-direction: row;
	justify-content: space-between;
}
.wd-wlcome-icon span{
	border-radius: 10px;
	background: #EEF1F5;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
}
.wd-side-lft p{
	color:  #10194A;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 0;
	width: 80%;
}
.wd-wlcome-icon p a{
	color:  #2181FF;
	font-size: 14px;
	font-weight: 600;
	text-decoration-line: underline;
}
.wd-wlcome-icon p a:hover{
	font-weight: 700;
}

.wd-dshbord-btn-compact {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;  /* Reduced padding */
	color: #fff;
	background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
	border-radius: 8px;  /* Slightly reduced border-radius */
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;  /* Reduced font size */
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;  /* Added to reduce vertical size */
}
  
  .wd-dshbord-btn-compact:hover {
	color: #1A1A1A;
	text-decoration: none;
	background-color: #f0f0f0;  /* Added for better contrast on hover */
	transition: all 0.3s ease;  /* Simplified transition */
  }  
  
  .wd-dshbord-btn-compact.active {
	background: #2181FF;
	color: #fff;
	font-weight: 600;  /* Slightly reduced font weight */
  }
  .wd-dshbord-btn-compact.wd-dshbord-btn-secondary {
	background-color: #6c757d;
	border: 1px solid #6c757d;
	color: #fff;
	font-size: 0.875rem;
  }
  .wd-dshbord-btn-compact.wd-dshbord-btn-secondary:hover {
	background-color: #5a6268;
	border-color: #545b62;
	color: #fff;
  }

/* CV Review Page Navigation Styles */
.cv-navigation-header {
	background-color: #fff;
	border-bottom: 1px solid #e9ecef;
	padding: 15px 0;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cv-status {
	display: flex;
	align-items: center;
	gap: 15px;
}

.status-badge {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.status-reviewed {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.status-not-reviewed {
	background-color: #fff3cd;
	color: #856404;
	border: 1px solid #ffeeba;
}

.cv-info {
	color: #6c757d;
	font-size: 0.875rem;
}

.cv-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cv-dropdown .dropdown-menu {
	min-width: 250px;
}

.resume-dropdown-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.resume-date {
	font-weight: 500;
}

.badge {
	font-size: 0.75rem;
}

.badge-success {
	background-color: #28a745;
}

.badge-secondary {
	background-color: #6c757d;
}

/* Alert styles for review status */
.alert-info {
	background-color: #cce7ff;
	border-color: #b8daff;
	color: #004085;
}

.alert-warning {
	background-color: #fff3cd;
	border-color: #ffeaa7;
	color: #856404;
}

.wd-dshbord-btn{
	border-radius: 100px;
	background: #2181FF;
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.12);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: 1px solid #2181FF;
	white-space: nowrap;
	padding: 8px 14px;
	height: auto;
	display: block;
	text-align: center;
}
.wd-dshbord-btn:hover{
	background: transparent;
	color: #2181FF;
}
/* #ai_resume_review_return, #user_resume_contents_return {
    color: #000;
}

#ai_resume_review_return *, #user_resume_contents_return * {
    color: #000;
} */

.wd-job-title{
	margin-bottom: 20px;
}
.wd-job-title h2{
	color: #10194A;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
}
.wd-job-title h5{
	color: #788495 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}
.wd-job-dtls{
	display: flex;
	justify-content: space-between;
	height: 100%;
}
.wd-job-dtls-lft .wd_job_mdl{margin:0 0 25px;}
.wd-job-time span{
	border-radius: 7px;
    background: #DCEFF4;
    color: #10194A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 15px;
	display: inline-block;
}
.wd-job-dtls-right{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: auto;
}
.wd-job-files{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/* file upload */
.form-upload, .wd-attach-file-btn{
    border-radius: 100px;
	background: #F3F3F3;
    padding: 10px 20px;
}
.form-upload label{
    margin: 0;
}
.img-upload, .file-upload {
    display: none;
}

.wd-annual-value{
	display: flex;
	align-items: center;
	gap: 50px;
}
.wd-annual-value span{
	color:  #2181FF;
	font-size: 18px;
	font-weight: 700;
}

/* tabbing */
.wd-job-tab{
	margin: 30px -20px;
}
.wd-job-tab .nav{
	background: #DCEFF4;
	width: 100%;
    flex-wrap: nowrap;
    /* overflow-x: scroll;
    overflow-y: hidden; */
    white-space: nowrap;
    align-items: center;
    justify-content: flex-start;
		padding: 5px 8px;
	}
.wd-job-tab .nav-pills .nav-link{
	color: #5D6277;
	font-size: 16px;
	font-weight: 600;
	padding: 8px 12px;
	margin-right: 10px;
}
.wd-job-tab .nav-pills .nav-link.active{
	border-radius: 100px;
	background: #2181FF;
	color: #fff;
	font-weight: 700;
}

.wd-artefact-tab {
    /* margin: 30px -20px; */
    margin: 0; /* Removes margin around the container */
    padding: 0; /* Removes padding inside the container */
}


#content-container .tab-content {
    padding: 24px 20px 0px;
}

#content-container {
    padding-top: 0; /* Removes padding at the top of these elements */
}
#content-container, #navigation-container {
    margin-top: 0; /* Removes margin at the top of these elements */
}

/* for scroll css */
.scroll {
    scrollbar-width: auto;
    scrollbar-color: #2181FF;
    padding: 10px 0;
}
/* Chrome, Edge, and Safari */
.scroll::-webkit-scrollbar {
    width: 10px;
    height: 3px;
}
.scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
    width: 8px;
    height: 10px;
}
.scroll::-webkit-scrollbar-thumb {
    background-color: #2181FF;
    border-radius: 10px;
    border: 3px solid #2181FF;
}
.wd-job-tab .tab-content{
	padding: 24px 20px 0px;
}
.wd-job-desc-box{
	height: 100%;
	border-radius: 10px;
	border: 2px solid #E4E4E4;
	background: #FEFEFE;
	padding: 8px;
}
.wd-job-desc-box:hover{
	border: 4px solid #E4E4E4;
	cursor: pointer;
}

.wd-job-desc-box h4{
	color:  #10194A;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.wd-job-desc-box p{
	color: #505C6D;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}
.wd-job-desc-box p:last-child{margin-bottom: 0;}
.job-description-reveal {
	line-height: 0.8;
	font-size: small;
	font-weight: 700;
	color: #007bff;
}

.wd-resume-box p{
	margin-bottom: 15px;
}
/* question answer nav */
.wd-que-tab .nav{
	background: transparent;
    width: 100%;
    display: block;
    white-space: unset;
	padding: 5px;
}
.wd-que-tab .nav-pills .nav-link {
	color: #505C6D;
	font-size: 16px;
	font-weight: 500;
	margin:0 0 5px 0;
	padding: 5px;
}
.wd-que-tab .nav-pills .nav-link.active {
    color: #2181FF;
	text-decoration: underline;
    font-weight: 600;
	background: transparent;
}
.wd-ans-box .tab-content{
	padding: 0;
}
.answer-content, p, strong, ul, li {
	color: #000;
}
.answer-content, :hover {
	color: #000;
}

/* end dashboard right side*/
/*----Create Job Popup---*/
.wd_create_job .modal-content{
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0px 7px 27px 0px rgba(0, 0, 0, 0.11);
	padding: 0 0 16px;
}
.wd_create_job .modal-header h5{
	margin: 0 auto;
	color: #10194A;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
}
.wd_create_job .modal-header .close{
	margin: 0;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1.5px solid #10194A;
    opacity: 1;
    font-size: unset;
}
.wd_create_job h5{
	color: #10194A;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
	line-height: normal;
	text-transform: capitalize;
}
.wd_create_job p{
	color: #41464d;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 20px;
}
.wd_create_job .modal-body{
	padding: 1rem 1.5rem;
	/* background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%); */
	background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
}

.view-resume-review-box{
	padding: 1rem 1.5rem;
	background: #DCEFF4;
}
.wd_create_job textarea{
	height: 120px !important;
}
.wd_create_job .wd_srch_bx{padding: 12px 30px !important;}

.explore_form .btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	background: red;
	cursor: inherit;
	display: block;
}
.explore_form .file-input-label {
	padding: 12px 15px;
	display: block;
	height: auto;
	width: 100%;
	border-radius: 13px;
	border: 1px solid #E5E5E5;
	background: #F9F9F9;
	color: #788495;
	font-size: 15px;
	font-weight: 500;
}
.explore_form input[readonly] {
	background-color: white !important;
	cursor: text !important;
}
.input-group{flex-wrap: nowrap;}
.wd_browse_btn{
	border-radius: 100px;
	background: #2181FF;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.16);
	color: #FFF;
	font-size: 15px;
	font-weight: 800;
	margin: 5px 5px 0 0;
    padding: 8px 25px;
    position: absolute;
    top: 0;
    right: 0;
}
.resume_title{
	color: #10194A;
	font-size: 18px;
	font-weight: 700;
	margin: 20px auto 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.cv-panel-header{
	margin: 20px auto 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}
.cv-panel-header-text{
	color: #10194A;
	font-size: 18px;
	font-weight: 700;

}
/* .cv-panel-header-btn{
	background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	border-radius: 4px;
    background-color: #e9ecef;
    border: none;
    padding: 4px;
	cursor: pointer;
    font-size: 14px;
}
.cv-panel-header-btn:hover {
	background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	transition : all 0.3s ease-in-out;
	transform : scale(1.025);
	box-shadow : 0 0 10px rgba(0,0,0,0.5);
	z-index : 1000;

  } */



  .wd_resume_bx{
	border-radius: 13px;
	border: 1px solid #E5E5E5;
	background: #F9F9F9;
	padding: 15px;
}
.wd_resume_bx p{
	color: #505C6D;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 10px;
}
.wd_resume_bx ol{
	list-style: auto;
	padding-inline-start: 15px;
}
.wd_resume_bx ol li{
	color: #505C6D;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}
.wd_resume_bx strong{
	color: #10194A;
}
.ai_bx ol li::marker{
	color: #10194A;
	font-weight: 700;
}
/* dashboard contact us start */
.wd-contct-lft h1{
	color: #10194A;	
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}
.wd-contct-lft p{
	color: #788495;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}
.submit-btn .wd-dshbord-btn{
	display: block;
	margin: 30px auto;
	text-align: center;
	width: 25%;
	font-size: 20px;
	padding: 10px 14px;
}
.wd-contct-img{
	text-align: center;
	margin-bottom: 30px;
}
.wd-media-box{
    align-items: center;
    margin-bottom: 25px;
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
}
.wd-media-icon{
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(33, 129, 255, 0.2);
	margin-right: 15px;
}
.wd-media-box a, .wd-media-box p{
	color:  #10194A;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}
.wd-media-box a:hover{
	font-weight: 600;
}
/* END Contact us */
/* how it work */
.wd-work-blog h1{
	color:  #10194A;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}
.wd-work-blog h2{
	color:  #10194A;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.wd-work-blog p{
	color: #788495;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}
.wd-work-step h5{
	color:  #10194A;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.wd-work-step ul{
	padding-left: 10px;
    margin-bottom: 0.7rem;
}
.wd-work-step ul li{
	display: block;
    position: relative;
    color: #788495;
    font-size: 16px;
    font-weight: 600;
    padding: 3px 15px;
}
.wd-work-step ul li::before{
	background: #788495;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 11px 0px;
}
/* End How it work */
/* pricing*/
.pricing_main {
          padding: 20px 20px;
      }
      .pricing_main h4{
         font-size: 37px;
         font-weight: 700;
         color: #000000;
      }
      .pricing_main p{
         font-size: 16px;
         font-weight: 500;
         color: #505C6D;
         display: block;
      }
      .pricing_main svg{
         margin: 0 0.5rem 0 0;
          display: block;
          width: 18px;
          height: 18px;
      }
      .pricing_main span{
         color: #10194A;
         text-align: center;
         font-size: 16px;
         font-style: normal;
         font-weight: 500;
         line-height: 26px;
         display: block;
      }
      .pricing_main .wd_srch_bx{
         width: 100%;
         margin: 1rem auto 0rem;
         max-width: 250px;
         font-size: 20px;
         font-weight: 800;
         text-align: center;
         padding: 10px 20px;
      }
      .pricing_plaxbox{
         border: 1px solid #EAEAEA;
         box-shadow: 0px 4px 8px 0px transparent;
         border-radius: 16px;
         display: block;
         justify-content: space-between;         
         width: 100%;
         margin-bottom: 15px;
      }
      .pricing_plaxbox:hover {
		    border: 1.5px solid #2181FF;
		    box-shadow: 0px 4px 8px 0px #0000001C;
		}
      .planbox_content h5{
         color: #000;
         text-align: left;
         font-size: 18px;
         font-style: normal;
         font-weight: 700;
         line-height: 26px;
      }
      .planbox_content h2{
         color: #000;
         text-align: left;
         font-size: 24px;
         font-style: normal;
         font-weight: 700;
         line-height: 26px; /* 72.222% */
      }

      .planbox_content h6{
         color: #000832;
         text-align: left;
         font-size: 14px;
         font-style: normal;
         font-weight: 700;
         line-height: 26px; /* 162.5% */
      }
	  .planbox_content h5, .planbox_content h2, .planbox_content h6 {
		margin-bottom: 10px; /* Reduce margin between elements */
	}
	  .include_list li{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		margin-bottom: 0px;
      }
      /*pricing end*/
.view_resumetxt {
    color: #2181ff;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid;
    display: inline-block;
}
.job_statictxt h3{
	font-size: 24px;
	font-weight: 700;
	color: #2181FF;
	display: block;
	margin-bottom: 3px;
}
.job_statictxt {
    width: 100%;
    margin-left: 15px;
}
.job_static_main .wd-wlcome-side {
    margin-bottom: 1.2rem;
}
.form-upload span {
    font-size: 16px !important;
    color: #10194A !important;
    font-weight: 500;
    margin-right: 10px;
    padding: 0 !important;
}
.form-upload label {
    display: flex;
    align-items: center;
}
.wd-attach-file span, .wd-update-stage span {
    font-size: 14px;
    font-weight: 500;
    color: #788495;
    padding: 0 10px;
}
.planbox_content h2 small {
    color: #505C6D;
    font-size: 18px;
    font-weight: 500;
}
.pricing_header {
    background: #F5F5F5;
    border-radius: 16px 16px 0 0;
    padding: 15px;
    display: block;
    text-align: center;
}
.pricing_header img {
    width: 90%;
    margin: 0 auto;
}
.planbox_content {
    padding: 20px 20px;
}
.linesvg{
	width: 134px !important;
	margin: 1.5rem auto 1rem !important;
}
#show-hidden-menu{
	font-size: 16px;
	font-weight: 400;
	color: #2181FF;
	text-align: right;
}
/* 04/09/2023 */
.wd-new{
	padding: 2px 6px 2px 6px;
	border-radius: 7px;
	font-family: 'Urbanist', sans-serif;
	font-size: 12px;
	font-weight: 500;
	background: #45D76E;
	color: #fff;
	text-transform: uppercase;
	width: fit-content;

}
.wd-creat-evnt{
	font-size: 16px;
	font-weight: 600;
	text-decoration: underline;
	color: #2181FF;
}
.wd-creat-evnt:hover{
	font-weight: 700;
	color: #2181FF;
}
.wd-profl-link{display: flex;flex-direction: column;justify-content: space-between;gap: 10px;align-items: center;}
.wd-profl-link .wd-creat-evnt{font-size: 14px;}
.wd-view-dtls{
    display: flex;
    margin: 20px auto 0;
    font-size: 16px;
    font-weight: 500;
    color: #2181FF;
    text-transform: capitalize;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
	text-decoration: underline;
}
.wd-view-dtls span{margin-right: 10px;}
.explore_form .wd-update-stage .form-control{width: 100%; background-position: 98% !important;}
.wd-choose-resume{
	max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.wd-choose-resume p {
    position: relative;
	margin-bottom: 0;
}
.wd-info-img{
	background: #F9F9F9;
    width: 85px;
    height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 13px;
}
.wd-info-img img{
	max-width: 100%;
	height: auto;
}
.wd-choose-resume input[type=radio]{
    display: none;
}
.wd-choose-resume :checked + label:before {
    content: "";
    position: absolute;
    opacity: 1;
    width: 14px;
    height: 14px;
    background: url(../images/dashboard/right-mark.png)no-repeat !important;
    top: 0;
    right: 0;
	margin: 8px 8px 0 0;
}
.wd-choose-resume :checked + label .wd-info-img{
	border: 1px solid #2181FF;
}
.rsume-name{
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	display: block;
	margin: 10px auto;
}
.wd-mr-rating i{
	font-size: 13px;
	color: #ffc107;
}
.save-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
#job_details .wd-job-tab .nav{overflow-x: scroll;}
/*----23-10-2023---*/
/*---Thumbs up -----*/
.wd_jdesc_top{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wd_jdesc_top h4{
	margin-bottom: 0;
}
.wd-review-thumb{
	display: flex;
    justify-content: flex-end;
    gap: 10px;
}
#job_details .wd-review-thumb{
	justify-content: flex-start;
}


.wd_thumb_bx {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.wd_thumb_bx label{
	margin-bottom: 0;
	cursor: pointer;
}
.wd_thumb_bx input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wd_thumb_bx input ~ .thumb::before {
	position: absolute;
	left: 0;
	top: 0;
	font-family:"Font Awesome 5 Free";
	font-weight: 900;
}
.wd-like input ~ .thumb::before {
  content:'\f164';
  color: #5D6277;
}
.wd-dislike{margin: 0 0 -5px 0;}
.wd-dislike input ~ .thumb::before {
	content:'\f165';
	color: #5D6277;
}
.wd_thumb_bx input:checked ~ .thumb::before {
  color: #2181FF;
}
.wd-dislike input:checked ~ .thumb::before {
	color: red;
  }
/* 27-10-2023 */
/* aatach file & attach file modal */
.wd-attach-file{
	display: flex;
    align-items: flex-start;
    flex-direction: column;
}
/* attach */
.wd-cstm-checkbox{
	display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    flex-direction: column;
}
.wd-cstm-checkbox p{margin: 0;}
.explore_form .form-group .wd-cstm-checkbox label {
	position: relative;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	text-align: left;
}
.wd-cstm-checkbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
	position: relative;
}
.wd-cstm-checkbox label:before {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #2181FF;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 7px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 7px;
	border-radius: 3px;
} 
.wd-cstm-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #2181FF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
} 
.explore_form h5{
	font-size: 16px;
	font-weight: 600;
	color: #545454;
	margin-bottom: 6px;
}
/* search fiter area */
.wd-srch-fltr-area{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}
/* -------search section for blog -----------*/
.wd_srch_form{
	padding: 0 0 0px;
	margin: 0;
	position: relative;
	width: 100%;
}
.wd_srch_form .form-group{
	position: relative;
	margin: 0;
}
.wd_srch_icon {
	position: absolute;
	top: 13px;
	left: 15px;
}
.wd_srch_form .form-control{
	border-radius: 11px;
	background: #FFF;
	box-shadow: 0px 7px 25px 0px rgba(0, 0, 0, 0.10);
	height: auto;
	padding: 12px 15px 12px 45px;
	border:0;
}
/* filter */
.wd-filtr-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2181FF;
	width: 42px;
	height: 42px;
	border-radius: 5px;
	border: none;
}
.wd-filtr-btn i{
	color: #fff;
}
.filter-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: 100%; /* Position the dropdown right below the dropdown link */
    right: 0; /* Align the dropdown to the right */
    background-color: white; /* Set a background color */
    border: 1px solid #ddd; /* Optional: add a border */
    border-radius: 4px; /* Optional: round the corners */
    min-width: 160px; /* Set a minimum width */
    z-index: 10004 !important; /* Highest z-index to ensure visibility above all dashboard elements */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Enhanced shadow for better visibility */
    pointer-events: auto !important; /* Ensure dropdown is interactive */
}
.wd-fltr .dropdown-overlay
{
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  display: none;
}
.wd-fltr .dropdown-menu{
	left: auto;
	right: 0;
}
.wd-filtr-btn.dropdown-toggle::after{display: none;}

.note-editor {
	color: #000;
}

.note-editor.note-frame.fullscreen {
	background: #fff !important;
  }
  
.note-editable {
	background: #F9F9F9;
}

.note-editable p {
	color: #000;
}

b {
	color: #000;
}

u {
	color: #000;
    text-decoration: underline;
    text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: #000;
}


.follow-on-questions {
    padding-left: 1.5rem !important;
    list-style: disc;
}
.follow-on-questions li a {
    font-size: 15px !important;
    font-weight: 400 !important;
    /* color: #424242 !important; */
}

/* #customised_resume_box_content ul > li {
    list-style-type: circle;
    padding: 1px 0;
} */
/* Grouping common styles for li elements */
#customised_resume_box ul li,
#user_resume_contents ul li,
#user_resume_contents_return ul li,
#sample_resume_box_content ul li {
    list-style-type: none; /* Removes default bullet points */
    padding-left: 20px; /* Add some padding for the custom bullet points */
    position: relative; /* Needed for positioning the pseudo-element */
}

/* Grouping common styles for li::before pseudo-elements */
#customised_resume_box ul li::before,
#user_resume_contents ul li::before,
#user_resume_contents_return ul li::before,
#sample_resume_box_content ul li::before {
    content: '\2022'; /* Unicode character for a bullet point */
    font-size: 20px; /* Adjust the size of the bullet point */
    font-weight: bold; /* Make the bullet point bold */
    position: absolute; /* Position the pseudo-element */
    left: 0; /* Align to the left */
    top: 0; /* Align to the top */
    color: black; /* Set the color of the bullet point */
}

.indented {
    margin-left: 40px;
}

/* Temporary Background Color Change: */
.highlight-new-content {
    animation: highlightFade 8s ease;
}

@keyframes highlightFade {
    0% { background-color: #b3e5fc; } /* Light Blue */
    100% { background-color: transparent; }
}

/* Border Highlight:	 */
.border-highlight {
    border: 4px solid #2181FF; /* Example: Orange */
	border-radius: 8px; /* Rounded corners */
    animation: borderFade 8s ease;
}

@keyframes borderFade {
    0% { border-color: #2181FF; }
    100% { border-color: transparent; }
}

/* Flashing or Blinking Text: */
.flashing-text {
    animation: textFlash 8s ease;
}

@keyframes textFlash {
    0%, 100% { color: black; }
    50% { color: #2181FF; }
}


/* Tooltips */
.nav-item a.nav-link[data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2181FF;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
}

/* Style for questions */
.nav-item a.nav-link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px; /* space for shadow */
    border-radius: 4px; /* optional for rounded corners */
    padding: 5px; /* optional for better spacing */
}

/* Hover effect */
.nav-item a.nav-link:hover {
    transform: translateY(-5px); /* lifts the question up */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow */
	border-radius: 8px; /* optional for rounded corners */
}
#navigation-container .nav-item a.nav-link:hover {
    transform: translateY(-5px); /* lifts the question up */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow */
	border-radius: 30px; /* optional for rounded corners */
}

.selected-question {
	border: 2px solid #2181FF;
	border-radius: 13px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	background-color: #e8f0fe;
	color: #004085; 
	font-weight: bold;

}

.nav-item a.nav-link.selected-question:hover {
    /* Override the hover effect for selected questions */
    transform: none;
    box-shadow: none;
    border-radius: 0; /* Or maintain the same border-radius as non-hover state */
}

.input-error {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 12px;
}

/* loaders */
.loader, .loader:before {
	display: inline-block;
	border: 20px double transparent;
	border-top-color: #fff;
	border-radius: 50%;
  box-sizing: border-box;
}
.loader {
	padding: 8px;
  animation: wifiLoading 1s ease-in infinite;
}
.loader:before {
	content: '';
	width: 0; height: 0;
}
@keyframes wifiLoading {
  0% { border-style: none}
  100% { border-style: double}
}

.video-responsive {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
}

.video-responsive iframe {
    position: relative;
    display:block;
    width: 100%;
    height: 100%;
}


#navigation-help {
    transition: opacity 2s ease-in-out;
    opacity: 0;
    color: #fff; /* Choose a color that stands out */
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
    border-radius: 5px;
    padding: 5px;
    position: absolute; /* Adjust as necessary */
    /*top: 50px;  Adjust as necessary */
    /*right: 50px; /* Adjust as necessary */
    font-size: 14px;

    /*max-width: 150px;  Adjust as necessary to fit within your layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 100000; /* Higher than the .menu-side-icon to ensure visibility */
	transform: translateY(5px); /* Slight adjustment for spacing */
}


.wd-job-dtls-compact {
	display: flex;
	flex-direction: column;
	padding: 5px;
	border-bottom: 1px solid #e0e0e0;
	border-radius: 10px;
	background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
  }
  
  .wd-job-dtls-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
  }
  
  .wd-job-dtls-title {
	flex: 1;
  }
  
  .wd-job-title-main {
	font-size: 18px;
	font-weight: 500;
	color: white;
	margin-bottom: 5px;
  }
  
  .wd-job-subtitle {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	color: white;
  }
  
  .wd-job-dtls-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	height: 40px; /* Set a fixed height for the container */
  }
  
  .wd-job-match {
	font-size: 14px;
	font-weight: 500;
	color: #10194A;
	background-color: #DCEFF4;
	padding: 0 10px;
	border-radius: 100px; /* Match the border-radius of other elements */
  }
  
  .wd-update-stage {
	height: 70%;
	padding: 0 15px;
  }
  
  .wd-update-stage .form-control {
	height: 100%;
	border-radius: 100px;
	border: 1.5px solid #7F859F;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.10);
	color: #7F859F;
	font-size: 14px;
	font-weight: 500;
	padding: 0 30px 0 10px; /* Increased right padding for the arrow */
	background-position: calc(100% - 10px) center !important; /* Adjust background position */
	background-size: 14px !important; /* Adjust the size of the arrow */
  }

  .wd-update-stage:hover .form-control {
	color: #2181FF;
	border-color: #2181FF;
  }
  
  .wd-update-stage .form-control:focus {
	box-shadow: none;
	border-color: #2181FF;
  }
  
  .wd-apply-btn {
	background-color: #DCEFF4;
	border-radius: 100px;
	border: 1.5px solid white;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.10);
	color: black;
	font-size: 14px;
	font-weight: 500;
	padding: 0 15px;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .wd-apply-btn:hover {
	background-color: #DCEFF4;
	color: #2181FF;
	border-color: #2181FF;
  }
  
  .wd-apply-btn svg {
	width: 16px;
	height: 16px;
	margin-left: 12px;
  }
  
  @media (max-width: 768px) {
	.wd-job-dtls-header {
	  flex-direction: column;
	}
	
	.wd-job-dtls-actions {
	  margin-top: 15px;
	  justify-content: flex-start;
	}
  }
  
  .explore_form .wd-update-stage .form-control {
	width: 100%;
	background-position: calc(100% - 10px) center !important;
  }



 .job-stats-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
	overflow-x: auto;
 }


 .job-stats-title {
	font-size: 18px;
	font-weight: 700;
	color: #10194A;
	margin: 0;
	white-space: nowrap;
 }
 
 .job-stat-item {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 120px;
 }
 
 .job-stat-icon {
	width: 32px;
	height: 32px;
	background-color: #EEF1F5;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
 }
 
 .job-stat-content {
	display: flex;
	flex-direction: column;
 }
 
 .job-stat-label {
	font-size: 14px;
	font-weight: 500;
	color: #10194A;
	margin: 0;
	white-space: nowrap;
 }
 
 .job-stat-value {
	font-size: 16px;
	font-weight: 700;
	color: #2181FF;
	margin: 0;
 }
 
 /* Hide scrollbar for Chrome, Safari and Opera */
 .job-stats-row::-webkit-scrollbar {
	display: none;
 }
 
 /* Hide scrollbar for IE, Edge and Firefox */
 .job-stats-row {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
 }
 
 .job-stats-separator {
	width: 1px;
	height: 30px;
	background-color: #E0E0E0;
	margin: 0 15px;
 }
 
 @media (max-width: 768px) {
	.job-stats-row {
	   flex-wrap: nowrap;
	   overflow-x: auto;
	}
	
	.job-stat-item {
	   flex: 0 0 auto;
	}
 }

 .new-nav-container {
	display: flex;
	flex-direction: row;
	gap: 5px;
	overflow-x: auto;
	padding: 2px 15px 2px 15px;

	margin: 8px -20px;
  }
  
  .new-nav-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* background: #D6ECF2; */
	/* border: 1px solid #8CA1A7; */
	border: 1px solid #E8E8E8;
	background: #ffffff;
	border-radius: 10px;
	padding: 5px;
	min-width: min-content;
	max-width: 100%;
  }
  
.new-nav-section.active{
	border: 2px solid #2181FF;
}
.new-nav-section.selected-job{
	border: 2px solid #2181FF;
}
.new-nav-section:hover{
	border: 1.5px solid #2181FF;
	cursor: pointer;
}

.new-nav-content {
	display: flex;
	flex-direction: column;
	width: 100%;
}
  
.artefact_stage_header {
	color: #10194A;	
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	text-align: left;
	width: 100%;
}
  
  .artefact_stage_text {
	color: #10194A;	
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: left;
	width: 100%;
  }
  
  .new-nav-items {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 8px;
	width: 100%;
	overflow-x: auto;
  }
 
  .new-nav-link {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;  /* Reduced padding */
	color: #fff;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
	/* background-color: #2181FF; */
	border-radius: 8px;  /* Slightly reduced border-radius */
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;  /* Reduced font size */
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;  /* Added to reduce vertical size */
  }
  
.new-nav-link:hover {
	color: #fff;
	text-decoration: none;
	background-color: #f0f0f0;  /* Added for better contrast on hover */
	transition: all 0.3s ease;  /* Simplified transition */
  }  
  
  .new-nav-link.active {
	background: #2181FF;
	color: #fff;
	font-weight: 600;
  }
  .keywords_btn {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;  /* Reduced padding */
	color: #fff;
	background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
	border-radius: 8px;  /* Slightly reduced border-radius */
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;  /* Reduced font size */
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;  /* Added to reduce vertical size */
  }
  
  .keywords_btn:hover {
	color: #1A1A1A;
	text-decoration: none;
	background-color: #f0f0f0;  /* Added for better contrast on hover */
	transition: all 0.3s ease;  /* Simplified transition */
  }  
  
  .keywords_btn.active {
	background: #2181FF;
	color: #fff;
	font-weight: 600;  /* Slightly reduced font weight */
  }
 .highlight {
    /* background-color: greenyellow; */
    background-color: #d1edf5;
	color: #10194A;
    font-weight: bold;
	cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;  /* Ensures the transform works as expected */
}

 /* .highlight-single {
    background-color: green;
    font-weight: bold;
} */

.highlight-single {
    transition: background-color 0.5s ease-out;
  }
  .highlight-single.active {
    background-color: #FFA800;
	font-weight: bold;
  }
  .highlight-single.fading {
    background-color: transparent;
  }

  .keyword-link {
    cursor: pointer;
    text-decoration: underline;
    position: relative;
  }
  .keyword-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2181FF;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  .keyword-link:hover .highlight {
    background-color: #FFA800;
	color: black;
  }
  .keyword-link:hover::after {
    visibility: visible;
    transform: scaleX(1);
  }

  /* ============================================================
     COMPACT RESUME CONTROLS - Pill-style design
     ============================================================ */

  .resume-controls {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
  }

  /* Header Section - AI Resume badge */
  .controls-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    border-radius: inherit;
  }

  .icon-sparkles {
    width: 14px;
    height: 14px;
    color: white;
    stroke-width: 2;
  }

  .header-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
  }

  .match-percentage {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    cursor: default;
  }

  .icon-target {
    width: 12px;
    height: 12px;
    color: white;
    stroke-width: 2;
  }

  .match-value {
    font-size: 12px;
    font-weight: 700;
    color: white;
  }

  /* Controls Body - Button container */
  .controls-body {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 8px;
  }

  /* Base Button Styles */
  .control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: transparent;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.15s ease;
  }

  .control-btn svg {
    width: 14px;
    height: 14px;
    color: #4b5563;
    stroke-width: 2;
  }

  .control-btn:hover:not(:disabled) {
    background: #f3f4f6;
  }

  .control-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .control-btn:active:not(:disabled) {
    transform: scale(0.95);
  }

  /* Navigation Buttons */
  .nav-btn {
    padding: 4px;
  }

  .page-count {
    padding: 0 6px;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    user-select: none;
  }

  /* Divider */
  .divider {
    width: 1px;
    height: 16px;
    background: #e5e7eb;
    margin: 0 4px;
  }

  /* Divider */
  .horizontal-divider {
    display: flex;
    height: 1px;
    background: black;
    margin-top: 2px;
    margin-bottom: 16px;
  }

  /* Feedback Buttons */
  .feedback-btn.positive:hover:not(:disabled) {
    background: #f0fdf4;
  }

  .feedback-btn.positive:hover:not(:disabled) svg {
    color: #16a34a;
  }

  .feedback-btn.negative:hover:not(:disabled) {
    background: #fef2f2;
  }

  .feedback-btn.negative:hover:not(:disabled) svg {
    color: #dc2626;
  }

.feedback-btn.positive.is_chosen svg{
  color: #16a34a;
}
.feedback-btn.negative.is_chosen svg{
	color: #dc2626;
  }


  /* Responsive behavior */
  @media (max-width: 768px) {
    .resume-controls {
      flex-wrap: wrap;
    }

    .controls-body {
      flex-wrap: wrap;
    }
  }

  /* End Compact Resume Controls */

  .file-save-container {
	display: flex;
	flex-direction: row;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 15px 2px 15px;
	margin: 8px -20px;
	height: 70%;
  }

.select-file-download-container {
	display: flex;
	flex-direction: row;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 15px 2px 15px;
	margin: 8px -20px;
	height: 70%;
  }
  
  
  .select-file-download-container .form-control {
	height: 100%;
	border-radius: 10px;
	border: 1.5px solid #7F859F;
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.10);
	color: #7F859F;
	font-size: 14px;
	font-weight: 500;
	/* padding: 0 30px 0 10px;
	background-position: calc(100% - 10px) center !important;
	background-size: 14px !important; */
  }

  .select-file-download-container:hover .form-control {
	color: #2181FF;
	border-color: #2181FF;
  }
  
  .select-file-download-container .form-control:focus {
	box-shadow: none;
	border-color: #2181FF;
  }

  .wd-download-save-btn {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;  /* Reduced padding */
	color: #fff;
	background-color: #2181FF;
	border-radius: 8px;  /* Slightly reduced border-radius */
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;  /* Reduced font size */
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .wd-download-save-btn:hover {
	color: #1A1A1A;
	text-decoration: none;
	background-color: #f0f0f0;  /* Added for better contrast on hover */
	transition: all 0.3s ease;  /* Simplified transition */
  }  



.review_container {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}
.cv-content {
	white-space: pre-wrap;
}


.suggestion-popup {
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    max-width: 300px;
    font-family: Arial, sans-serif;
}
/* 
.suggestion-item {
    margin-bottom: 6px;
    padding: 6px;
    background-color: #DCEFF4;
    border-radius: 4px;
    transition: all 0.3s ease;
	border: 1px solid #007bff;
}

.suggestion-item:hover {
	background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	cursor: pointer;
	transition : all 0.3s ease-in-out;
	transform : scale(1.015);
	box-shadow : 0 0 10px rgba(0,0,0,0.5);
	z-index : 1000;
}

.suggestion-item strong {
    display: block;
    margin-bottom: 5px;
    color: #495057;
    font-size: 14px;
}

.suggestion-item p {
    margin: 5px 0;
    font-size: 13px;
    color: #6c757d;
}
.suggestion-header {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
}


.suggestion-header .suggestion-buttons {
    display: flex;
    justify-content: flex-end;
}

.suggestion-buttons button {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;


	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;
	border-radius: 8px;
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 0.9;
}



.suggestion-buttons button[data-action="apply"] {
    background-color: #9de7ae;
    color: white;
}

.suggestion-buttons button[data-action="apply"]:hover {
    background-color: #218838;
}

.suggestion-buttons button[data-action="reject"] {
    background-color: #e34b5a;
    color: white;
}

.suggestion-buttons button[data-action="reject"]:hover {
    background-color: #c82333;
} */

.progress-bar {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress {
    height: 100%;
    background-color: #2bd352;
    width: 0;
    transition: width 0.3s ease-in-out;
}

/* Add this to your existing styles for highlighting in the CV content */
.highlight {
    background-color: #fff3cd;
    padding: 2px 0;
    border-bottom: 2px solid #ffc107;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px 4px 0 0;
}


.review-panel.hidden #suggestionsContent {
    display: none;
}


.review-panel {
    /* flex-grow: 1; */
    overflow-y: auto;
    transition: all 0.3s ease;
}

.cv-panel, .review-panel {
    flex: 1;
    transition: all 0.3s ease;
}

.suggestions-container {
    display: flex;
    flex-direction: column;
	max-width: 50%;
}


.review-panel.hidden {
    max-height: 0;
    overflow: hidden;
}

#suggestionsContent {
    padding: 6px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 13px;
	margin-top: 10px;
}

.wd-feedback-view{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.review_summary_items {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.review_summary_item {
    margin: 6px;
    padding: 12px;
    background-color: #f8f9fa;
    /* border-left: 4px solid #007bff; */
    border-radius: 4px;
    transition: all 0.3s ease;
	border: 1px solid #007bff;
	
}

.main_job_title_area {
	display: flex;
	flex-direction: row;
	gap: 5px;
}


.tab-list {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	gap: 10px;
	margin-bottom: 5px;
}

/* .tab-list li {
	padding: 8px;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #DCEFF4;
	border-radius: 10px;
	margin-right: 5px;
}
.tab-list li.active {
	background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
}

.tab-list li:hover {
	background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
	transition : all 0.3s ease-in-out;
	transform : scale(1.025);
	box-shadow : 0 0 10px rgba(0,0,0,0.5);
	z-index : 1000;
} */

.review_tab_content {
	display: none;
}
.review_tab_content.active {
	display: block;
}



.pdf-container {
	position: relative;
}

.pdf-page {
	position: relative;
}



.popup-container {
    display: none;
    position: absolute;
    width: 300px;
    background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .popup-content {
    padding: 4px;
    text-align: center;
  }

  .customised-cv-pop-up-btns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
  }
  .btn {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .btn-primary {

	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;
	color: #fff;
	background-color: #2181FF;
	border-radius: 8px;
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;
	
}

  .btn-secondary {
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 2px 4px;
	color: #fff;
	background-color: #2181FF;
	border-radius: 8px;
	border: 1px solid #8CA1A7;
	text-align: center;
	font-size: 0.8em;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.2;
  }

  .btn-primary:hover, .btn-secondary:hover {
    color: white;
    transform: scale(1.015);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
  }

  /* .btn-primary:hover {
    background: linear-gradient(92deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
  }

  .btn-secondary:hover {
    background: linear-gradient(270deg, #7fa4d3 2.88%, #bbe1e7 134.48%);
  } */

  .btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent;
    font-size: 20px;
    color: #000;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }

  .btn-close:hover {
    background-color: #f0f0f0;
    border-radius: 50%;
  }

  .review_job_description {
	margin-top: 20px;
  }


.grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.pricing-boxes {
	margin-bottom: 25px;
}
@media (min-width: 768px) {
	.grid {
		grid-template-columns: 1fr 1fr;
	}
}
/* .card {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}
.card-header {
	background-color: #f8f9fa;
	padding: 15px;
	border-bottom: 1px solid #ddd;
}
.card-title {
	margin: 0;
	font-size: 1.25rem;
}
.card-description {
	margin: 5px 0 0;
	color: #6c757d;
}
.card-content {
	padding: 15px;
} */
.card-footer {
	background-color: #f8f9fa;
	padding: 15px;
	border-top: 1px solid #ddd;
}
.badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: bold;
}
.badge-outline {
	border: 1px solid #007bff;
	color: #007bff;
}
.badge-success {
	background-color: #d4edda;
	color: #155724;
}
.btn {
	display: inline-block;
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	background-color: #007bff;
	color: white;
	cursor: pointer;
	font-size: 1rem;
}
.btn:hover {
	background-color: #0056b3;
}
.btn-outline {
	background-color: transparent;
	border: 1px solid #007bff;
	color: #007bff;
}
.btn-outline:hover {
	background-color: #007bff;
	color: white;
}
.btn-block {
	display: block;
	width: 100%;
}
.text-center {
	text-align: center;
}
.list-unstyled {
	list-style-type: none;
	padding-left: 0;
}
.text-muted {
	color: #6c757d;
}
.lock-icon::before {
	content: "🔒";
	margin-right: 5px;
}

.wd_job_card{
	border-radius: 10px;
	background: #FFF;
}

.wd_job_card:hover{
	cursor: pointer;
}


.feature-reveal {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.feature-reveal.active {
	display: flex;
	flex-direction: column;
	gap: 20px;
}




.wd_job_card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: box-shadow 0.2s;
}

.wd_job_card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #111827;
}

.job-location {
    font-size: 0.875rem;
    color: #4b5563;
}

.job-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

/* Tags and Labels */
.tag {
    font-size: 0.875rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.tag-new {
    background-color: #fee2e2;
    color: #991b1b;
}

.tag-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.job-stage {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Meta Information */
.job-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.match-score {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.salary-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0.5rem 0;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.action-blue:hover {
    background-color: #bfdbfe;
}

.action-purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.action-purple:hover {
    background-color: #e9d5ff;
}

/* Expand Button */
.expand-button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.expand-button:hover {
    background-color: #f3f4f6;
}

/* Expanded Content */
.expanded-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.expanded-content.hidden {
    display: none;
}

.action-green {
    background-color: #dcfce7;
    color: #15803d;
}

.action-green:hover {
    background-color: #bbf7d0;
}

.action-orange {
    background-color: #ffedd5;
    color: #9a3412;
}

.action-orange:hover {
    background-color: #fed7aa;
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
}

/* Apply Button */
.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.apply-button:hover {
    color: #1e40af;
}

/* Job Description Link */
.job-description-reveal {
    display: block;
    margin-top: 1rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
}

.job-description-reveal:hover {
    color: #1e40af;
}


.wd_job_actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dismiss-btn {
    background: #DCEFF4;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dismiss-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}



/* Confirmation Dialog Styles */
#archiveConfirmDialog .modal-content {
    border-radius: 8px;
    border: none;
}

#archiveConfirmDialog .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 1.5rem;
}

#archiveConfirmDialog .modal-title {
    font-weight: 600;
}

#archiveConfirmDialog .modal-body {
    padding: 1.5rem;
}

#archiveConfirmDialog .modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 1rem 1.5rem;
}

#archiveConfirmDialog .btn-secondary {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #333;
}

#archiveConfirmDialog .btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
}

#archiveConfirmDialog .btn-primary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.job-match-container {
	padding: 1rem;
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	margin: 1rem 0;
  }
  
  .job-match-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
  }
  
  .search-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #3B82F6;
	animation: bounce 1s infinite;
  }
  
  .job-match-text-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
  }
  
  .job-match-label {
	color: #4B5563;
	font-weight: 500;
  }
  
  .job-match-text {
	color: #2563EB;
	font-weight: bold;
	font-size: 1.125rem;
	background-color: #EFF6FF;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  .cursor {
	font-weight: normal;
	animation: blink 1s step-end infinite;
  }
  
  @keyframes bounce {
	0%, 100% {
	  transform: translateY(-10%);
	  animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
	}
	50% {
	  transform: translateY(0);
	  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	}
  }
  
  @keyframes pulse {
	0%, 100% {
	  background-color: #EFF6FF;
	}
	50% {
	  background-color: #DBEAFE;
	}
  }
  
  @keyframes blink {
	from, to { opacity: 1; }
	50% { opacity: 0; }
  }

  .tab-list li[data-tab="summary"].loading {
	position: relative;
  }
  
  .tab-list li[data-tab="corrections"].loading {
	position: relative;
  }
  
  .neural-network-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .neural-network-loader::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background: white; */
	opacity: 0.9;
  }
  
  .neural-network-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	padding: 2px;
  }
  
  .neural-node {
	width: 8px;
	height: 8px;
	background: #e6e027;
	border-radius: 50%;
	opacity: 0.5;
  }
  
  @keyframes neuralPulse {
	0%, 100% { 
	  transform: scale(1);
	  opacity: 0.5;
	}
	50% { 
	  transform: scale(1.5);
	  opacity: 1;
	}
  }

  .loader-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	font-family: system-ui, -apple-system, sans-serif;
  }

  .loader-content {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 1;
  }

  .glow-background {
	position: absolute;
	inset: 0;
	background: #3b82f6;
	opacity: 0.2;
	border-radius: 0.5rem;
	filter: blur(8px);
	animation: pulse 2s infinite;
  }

  .text-gradient {
	background: linear-gradient(90deg, #2181FF, #23d64c);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	font-size: 1.125rem;
	min-width: 1ch;
  }

  .sparkle {
	width: 24px;
	height: 24px;
	animation: spin 2s linear infinite;
  }

  .sparkle-left {
	color: #2181FF;
  }

  .sparkle-right {
	color: #23d64c;
  }

  @keyframes pulse {
	0%, 100% {
	  opacity: 0.2;
	}
	50% {
	  opacity: 0.3;
	}
  }

  @keyframes spin {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
  }

  /* SVG sparkle icon styles */
  .sparkle-icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
  }

.loading {
    position: relative;
}

.accordion-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    background-color: white;
}

.accordion-item.hovered {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.accordion-item.expanded {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.accordion-header {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header.active {
    padding-top: 0.4rem;
    padding-bottom: 0.8rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-container {
    position: relative;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .icon-container {
    transform: scale(1.1);
}

.icon-wrapper {
    position: relative;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.active-indicator {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid white;
}

.title-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .title-wrapper h3 {
    font-size: 1.5rem;
}

.chevron {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-inner {
    padding: 1.1rem;
    transform: translateY(1rem);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expanded .accordion-content-inner {
    transform: translateY(0);
    opacity: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.6rem;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.2rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dot {
    flex-shrink: 0;
}

.accordion-content-inner .content-text {
    font-size: 1.100rem;
    line-height: 1.50;
    color: #374151;
}

.cv-panel-header-btn {
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	border: 2px solid #c6ddf5;
	background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: #fff;
  }
  
  .cv-panel-header-btn:hover {
	transform: scale(1.05);
  }
  
  .cv-panel-header-btn.active {
	background: linear-gradient(135deg, #3a55ad 0%, #2181FF 100%);
	color: #9ae6ab;
	border: none;

  }

  
  .cv-panel-header-btn i {
	margin-left: 0.5rem;
  }


/* Media Queries */
@media (max-width: 640px) {
    .accordion-header {
        padding: 1rem;
    }
    
    .icon-container {
        padding: 0.75rem;
    }
    
    .title-wrapper h3 {
        font-size: 1.125rem;
    }
    
    .accordion-header.active .title-wrapper h3 {
        font-size: 1.25rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }

    .accordion-content-inner {
        padding: 1rem;
    }
}


/* Styles for disabled buttons */
.disabled {
	opacity: 0.6;
	cursor: not-allowed;
  }
  
  /* Processing indicator container */
  .processing-indicator {
	display: flex;
	align-items: center;
	margin-top: 8px;
	padding: 6px 10px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	font-size: 14px;
	color: #555;
  }
  
  /* Spinner animation */
  .spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-top-color: #3498db;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
  }
  
  /* Spinner animation keyframes */
  @keyframes spin {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  
  /* Ensure proper positioning within the suggestion card */
  .suggestion-card {
	position: relative;
  }
  
  /* Optional: Style for the error messages */
  [id^="suggestion_error_"] {
	margin-top: 8px;
	padding: 6px 10px;
	background-color: rgba(255, 0, 0, 0.1);
	border-radius: 4px;
	font-size: 14px;
  }
  
  /* Optional: Style for the feedback element */
  #save_edited_resume_feedback {
	padding: 8px 12px;
	border-radius: 4px;
	margin: 10px 0;
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
  }

  .suggestions-stats-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-weight: bold;
	padding: 4px;
  }
  .suggestion-item {
	position: relative;
	overflow: hidden;
	border-radius: 0.75rem;
	transition: all 0.3s;
	margin-bottom: 1.5rem;
	border: 1px solid #c6ddf5;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .suggestion-item:hover {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .suggestion-item.applied {
	background-color: #edfcf1;
	border-color: #d1e7dd;
  }
  
  .suggestion-item.rejected {
	background-color: #f8f9fa;
	border-color: #dee2e6;
	opacity: 0.6;
  }
  
  .status-indicator {
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 0.75rem;
	border-radius: 9999px;
	padding: 2px 8px;
  }
  
  .status-indicator.applied {
	background-color: #2181FF;
	color: white;
  }
  
  .status-indicator.rejected {
	background-color: #6c757d;
	color: white;
  }
  
  .suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1rem 0.5rem 1rem;
}
  
  .suggestion-header h4 {
	font-weight: bold;
	color: #333;
	margin: 0 0 0.25rem 0;
	font-size: 1.1rem;
  }
  
  .severity-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.15rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
  }
  
  .severity-badge.high {
	background-color: #feeaec;
	color: #dc3545;
  }
  
  .severity-badge.medium {
	background-color: #fff3cd;
	color: #856404;
  }
  
  .severity-badge.low {
	background-color: #d1ecf1;
	color: #0c5460;
  }
  
  .suggestion-buttons {
	display: flex;
	gap: 0.5rem;
  }
  
  .suggestion-buttons button {
	display: flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
  }
  
  .suggestion-buttons button[data-action="apply"] {
	background: linear-gradient(to right, #3f29a2, #2181FF);
	color: white;
  }
  
  .suggestion-buttons button[data-action="apply"]:hover {
	opacity: 0.9;
  }
  
  .suggestion-buttons button[data-action="reject"] {
	background-color: white;
	border: 1px solid #dee2e6;
	color: #495057;
  }
  
  .suggestion-buttons button[data-action="reject"]:hover {
	background-color: #f8f9fa;
  }
  
  .suggestion-buttons button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
  }
  
  /* Three-State Button System for CV Corrections */
  .suggestion-buttons button.btn-pending {
	background: linear-gradient(to right, #3f29a2, #2181FF);
	color: white;
	border: none;
  }
  
  .suggestion-buttons button.btn-pending:hover {
	background: linear-gradient(to right, #2d1f7a, #1a73e8);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(33, 129, 255, 0.3);
  }
  
  .suggestion-buttons button.btn-processing {
	background: linear-gradient(to right, #6c757d, #495057);
	color: white;
	border: none;
	cursor: not-allowed;
	opacity: 0.8;
  }
  
  .suggestion-buttons button.btn-applied {
	background: linear-gradient(to right, #28a745, #20c997);
	color: white;
	border: none;
	cursor: default;
  }
  
  .suggestion-buttons button.btn-manual {
	background: linear-gradient(to right, #6c757d, #495057);
	color: white;
	border: none;
	cursor: default;
  }
  
  .suggestion-buttons button.btn-manual:hover {
	background: linear-gradient(to right, #6c757d, #495057);
	transform: none;
	box-shadow: none;
  }
  
  /* Helper text styling for manual corrections */
  .manual-help {
	background-color: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 6px;
	padding: 12px;
	margin: 8px 0;
	display: flex;
	align-items: center;
  }
  
  .manual-help small {
	color: #856404;
	font-size: 0.875rem;
	line-height: 1.4;
	display: flex;
	align-items: center;
  }
  
  .manual-help svg {
	flex-shrink: 0;
	margin-right: 6px;
  }
  
  /* Spinner for processing state */
  .spinner-border-sm {
	width: 0.875rem;
	height: 0.875rem;
	border-width: 0.125rem;
  }
  
  .spinner-border {
	display: inline-block;
	vertical-align: -0.125em;
	border: 0.25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border 0.75s linear infinite;
  }
  
  @keyframes spinner-border {
	to {
	  transform: rotate(360deg);
	}
  }
  
  .visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
  }
  
  .suggestion-buttons button svg {
	width: 16px;
	height: 16px;
	margin-right: 4px;
  }
  
  .comparison-container {
    position: relative;
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 0.5rem 1rem 0.5rem 1rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
}
  
  .comparison-sides {
	display: flex;
	position: absolute;
	inset: 0;
  }
  
  .comparison-side {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 1rem;
	font-size: 0.875rem;
  }
  
  .comparison-before {
	background-color: #feeaec;
  }
  
  .comparison-after {
	background-color: #edfcf1;
  }
  
  .comparison-label {
	font-size: 0.7rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
  }
  
  .comparison-before .comparison-label {
	color: #dc3545;
  }
  
  .comparison-after .comparison-label {
	color: #198754;
  }
  
  .comparison-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background-color: #dee2e6;
  }
  
  .comparison-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	background-color: white;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .suggestion-explanation {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 0.75rem;
    color: #6c757d;
  }
  
  .suggestion-explanation svg {
	width: 16px;
	height: 16px;
	color: #2181FF;
	margin-right: 0.5rem;
	flex-shrink: 0;
  }
  
  .processing-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 10;
	font-size: 0.875rem;
  }
  
  .processing-indicator .spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #DCEFF4;
	border-top-color: #2181FF;
	border-radius: 50%;
	animation: spinner 0.8s linear infinite;
	margin-right: 8px;
  }
  
  @keyframes spinner {
	to {transform: rotate(360deg);}
  }
  
  .suggestions-stats {
	display: flex;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-bottom: 1rem;
  }
  
  .stat-badge {
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 9999px;
  }
  
  .applied-count {
	background-color: #edfcf1;
	color: #198754;
  }
  
  .rejected-count {
	background-color: #f8f9fa;
	color: #6c757d;
  }

  :root {
	--primary-color: #3a7bd5;
	--primary-light: #5a96e3;
	--dark-text: #10194A;
	--light-text: #555;
	--border-radius: 8px;
	--box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  /* body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark-text);
	background-color: #f9f9f9;
	margin: 0;
	padding: 20px;
  } */
  
  .modal-content {
	background: white;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	max-width: 600px;
	margin: 0 auto;
	overflow: hidden;
  }
  
  .modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 15px;
	border-bottom: 1px solid #eee;
  }
  
  .modal-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
  }
  
  .close-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
  }
  
  .modal-body {
	padding: 10px;
  }
  
  .section-heading {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 8px 0;
  }
  
  .section-description {
	color: var(--light-text);
	margin: 0 0 10px 0;
	font-size: 0.95rem;
  }
  
  .file-upload-container {
	position: relative;
	margin-bottom: 10px;
	border: 2px dashed #ddd;
	border-radius: var(--border-radius);
	padding: 10px;
	text-align: center;
	transition: all 0.3s ease;
  }
  
  .file-upload-container:hover, .file-upload-container.active {
	border-color: var(--primary-color);
	background-color: rgba(58, 123, 213, 0.03);
  }
  
  .file-upload-icon {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 15px;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.1s ease;
  }
  
  .file-upload-icon:hover {
	color: #1c6cd1;
	transform: scale(1.05);
  }
  
  .file-upload-icon:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 4px;
  }
  
  .file-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
  }
  
  .upload-prompt {
	margin-bottom: 10px;
	font-weight: 500;
  }
  
  .upload-hint {
	color: var(--light-text);
	font-size: 0.85rem;
  }
  
  .file-info {
	display: none;
	background-color: #f5f9ff;
	border-radius: var(--border-radius);
	padding: 15px;
	margin-top: 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  
  .file-info.active {
	display: flex;
	align-items: center;
  }
  
  .file-icon {
	margin-right: 12px;
	color: var(--primary-color);
  }
  
  .file-name {
	font-weight: 500;
	flex-grow: 1;
  }
  
  .file-remove {
	color: #f44336;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
  }
  
  .button-container {
	display: flex;
	gap: 15px;
	margin-top: 10px;
  }
  
  .btn {
	flex: 1;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: var(--border-radius);
	padding: 12px 20px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
  }
  
  .btn:hover {
	background-color: var(--primary-light);
  }
  
  .btn-outline {
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
  }
  
  .btn-outline:hover {
	background-color: rgba(58, 123, 213, 0.05);
  }

    .back-to-db-btn {
        background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    }

  .disclaimer {
	font-size: 0.8rem;
	color: var(--light-text);
	margin-top: 10px;
	text-align: center;
  }
/* ==========================================================================
   Job Search Aggregator Styles - Cleaned & Optimized
   ========================================================================== */

/* Base Styles */
.job-sites-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
    margin-bottom: 30px;
    border: 1px solid #f1f3f4;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
    flex: 1;
}

.btn-expand {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-expand:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
}

.expand-icon {
    transition: transform 0.3s ease;
}

/* Compact Stats Display */
.compact-stats {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 6px 8px;
    margin-bottom: 5px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.stat-icon {
    font-size: 16px;
}

.stat-text {
    font-weight: 500;
}

.cache-status-compact {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e9ecef;
    border-radius: 12px;
    font-size: 12px;
}

.cache-icon-small {
    font-size: 12px;
}

.cache-text {
    font-weight: 500;
}

.cache-text.fresh { color: #28a745; }
.cache-text.moderate { color: #ffc107; }
.cache-text.stale { color: #fd7e14; }
.cache-text.warning { color: #dc3545; }

/* Search Form */
.job-search-form {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: end;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Detailed Stats */
.detailed-stats {
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.stat-detailed {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.stat-value {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85em;
    color: #666;
}

/* Cache Status Detailed */
.cache-status-detailed {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 16px;
    border-left: 4px solid;
}

.cache-status-detailed.fresh { border-left-color: #28a745; }
.cache-status-detailed.moderate { border-left-color: #ffc107; }
.cache-status-detailed.stale { border-left-color: #fd7e14; }
.cache-status-detailed.warning { border-left-color: #dc3545; }

.cache-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cache-info {
    flex: 1;
}

.cache-title {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.cache-subtitle {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

/* Button Styles */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
    color: #495057;
}

.btn-outline {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

/* Compact Job Site Cards */
.job-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.job-site-card-compact {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.job-site-card-compact:hover {
    border-color: #007bff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 12px;
}

.site-info {
    flex: 1;
    min-width: 0;
}

.site-name {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.job-title {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.job-count-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 10px;
}

.card-description {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.card-actions .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Loading States */
.loading-spinner {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loading-spinner p {
    font-size: 14px;
    margin: 0;
    color: #333;
}

/* Error and No Results States */
.error-message, .no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 14px;
}

.error-message {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
    color: #c53030;
}

.no-results {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    max-width: 300px;
    font-size: 14px;
}

.notification-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.notification-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.notification-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .section-title {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .job-sites-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-count-badge {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .cache-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .job-sites-section {
        padding: 15px;
    }
    
    .job-search-form {
        padding: 15px;
    }
    
    .job-site-card-compact {
        padding: 12px;
    }
    
    .site-name {
        font-size: 15px;
    }
    
    .card-description {
        font-size: 12px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .job-sites-section {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .compact-stats, .job-search-form, .stat-detailed, .cache-status-detailed {
        background: #4a5568;
        border-color: #718096;
    }
    
    .job-site-card-compact {
        background: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .job-site-card-compact:hover {
        border-color: #63b3ed;
        box-shadow: 0 3px 8px rgba(99, 179, 237, 0.1);
    }
    
    .section-title, .site-name, .cache-title {
        color: #e2e8f0;
    }
    
    .stat-text, .job-title, .card-description, .cache-subtitle {
        color: #a0aec0;
    }
}

/* Performance Optimization */
.job-site-card-compact {
    will-change: transform;
}

.spinner {
    will-change: transform;
}

/* Focus States for Accessibility */
.btn:focus,
.form-group input:focus,
.job-site-card-compact:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}


  /* File upload animation */
  @keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
  }
  
  .file-upload-container.uploading {
	animation: pulse 1.5s infinite;
  }

  @keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
  }
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    padding: 1px;
  }
  
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,.2); 
	border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #2181FF; 
  }



/* ***********responsive ***************** */
@media (min-width: 1024px) { /* Adjust this breakpoint as needed */
    .video-responsive {
        max-width: 60%; /* Limiting video size on larger screens */
        margin: 0 auto; /* Centering the video container */
    }
}
@media (max-width: 1440px){
	.wd-side-lft p{width: 100%;}
}
@media (max-width: 1366px){
	.wd-job-tab .nav{overflow-x: scroll;}
}
@media (max-width: 1200px){
	.wd-job-desc-box p,.pricing_main p{font-size: 15px;}
	/*how its work & contact us*/
	.wd-work-blog h1, .wd-contct-lft h1{font-size: 20px;margin-bottom: 15px;}
	.wd-work-blog h2, .wd-work-step h5, .wd-contct-lft p{font-size: 18px;margin-bottom: 10px;}
	.wd-work-blog p{font-size: 15px;margin-bottom: 15px;}
	/*contact us*/
	.submit-btn .wd-dshbord-btn{font-size: 18px;}
	.wd-media-box{margin-bottom: 15px;}
	.wd-media-box a, .wd-media-box p{font-size: 16px;}
	.explore_form .form-group .form-control{padding: 10px 15px;}
	.leftbar .tab-content{padding: 20px 0;}
	/*dashboard left side*/
	.ds_leftbar_main {width: 300px;padding: 15px}
	.ds_rightbar{margin-left: 300px;}
	.leftbar .nav-link{padding: 10px 20px;}
	.leftbar .nav{flex-wrap: nowrap;white-space: nowrap;align-items: center;justify-content: flex-start;}
	.wd_job_lft h3{font-size: 16px;margin-bottom: 1px;}
	/*right side*/
	.wd-annual-value span, .wd-apply-btn{font-size: 16px;}
	.wd-main-title{font-size: 22px;margin-bottom: 16px;}
	.wd-job-title h2{font-size: 20px;}
	/*pricing*/
	.pricing_main h4{font-size: 32px;}
	.planbox_content h2{font-size: 28px;}
	.planbox_content h5{font-size: 20px;line-height: auto;}
	/*	.pricing_plaxbox{padding: 20px;}*/
	header .navbar .menu-item a{margin-right: 16px;}
}
@media only screen and (max-width: 991px) 
{	
	.header .navbar {padding: 0;margin: 0 auto;}
	.header .navbar .wrapper {position: fixed;top: 0;left: 0;width: 0%;height: unset;z-index: -1;opacity: 0;background: var(--white);transition: all 0.3s ease;}
	.header .navbar .wrapper .menu {display: none;flex-direction: column;position: absolute;top: 0;right:0;width: 100%;transform: translateY(0%);padding: 60px 25px 0;}
	.header .navbar .wrapper .menu-item {padding-bottom: 0.5rem;text-align: left;width: 100%;display: block;}
	.header .navbar .wrapper .menu-item:nth-child(1) a {transition-delay: 0.2s;}
	.header .navbar .wrapper .menu-item:nth-child(2) a {transition-delay: 0.3s;}
	.header .navbar .wrapper .menu-item:nth-child(3) a {transition-delay: 0.4s;}
	.header .navbar .wrapper .menu-item:nth-child(4) a {transition-delay: 0.5s;}
	.header .navbar .wrapper .menu-item:not(:first-child) {margin-left: 0;}
	.header .navbar .wrapper .menu-item a {padding: 10px 15px;margin-right: 0;opacity: 0;transform: translateX(-20px);transition: all 0.3s ease-in-out;}
	.header .navbar .wrapper .menu-item a:last-child{width: unset !important; display: inline-block !important;}
	.header .navbar .wrapper .menu-item .wd-header-option{justify-content: flex-start !important;}
	.wd_profile{padding: 0!important;}
	.header .dropdown-menu ul li a{margin: 0 !important;}
	header .navbar .nav-toggle {display: block;cursor: pointer;z-index: 999;margin-bottom: 0;position: relative;}
	header .navbar .nav-toggle span {display: block;width: 22px;height: 2px;background: #141C28;border-radius: 2px;margin-left: 14px;}
	header .navbar .nav-toggle span:nth-child(2) {margin: 5px 0;opacity: 1;width: 18px;margin-left: auto;}
	.header .navbar #nav:checked + .nav-toggle {transform: rotate(45deg);}
	.header .navbar #nav:checked + .nav-toggle span {transition: transform 0.5s ease;}
	.header .navbar #nav:checked + .nav-toggle span:nth-child(1) {transform: translateY(6px) rotate(180deg);}
	.header .navbar #nav:checked + .nav-toggle span:nth-child(2) {opacity: 0;}
	.header .navbar #nav:checked + .nav-toggle span:nth-child(3) {transform: translateY(-8px) rotate(90deg);}
	.header .navbar #nav:checked ~ .wrapper {z-index: 99;opacity: 1;height: 100%;}
	.header .navbar #nav:checked ~ .wrapper .menu{display: flex;justify-content: flex-start;align-items: flex-start;}
	.header .navbar #nav:checked ~ .wrapper .menu-item a {opacity: 1;transform: translateX(0);}
  	.wrapper_other {display: none;}
  	.resp_item{display: block;}
  	  /** Sidabar start **/
	.mobile-header{display: block;position:fixed;left: 0;top: 60px;}
	.mobile-header i{font-size: 20px;}
    .ds_leftbar_main {left:0;margin: 0;padding: 0;height: 100vh;background: transparent;width: 100%;border-radius: 0;transition: all ease-in-out 0.5s;opacity: 0;visibility: hidden;}
    .open-menu .menu-side-icon i:before {content: "\f00d";color: #000;}
    .leftbar {background: #fff;width: 450px;position: absolute;left: -200px;height: 100%;padding: 20px;transition: left 0.5s;margin-top: 77px;}
   	.repn_menu { display: flex;align-items: center;justify-content: flex-end;}
	.menu-side-icon {cursor: pointer;transition: all ease 0.5s;color: #fff;background: #2181ff;width: 36px;height: 36px;display: flex;align-items: center;justify-content: center;border-radius: 0 10px 10px 0;}
	.open-menu .menu-side-icon {position: relative; z-index: 99999;}
    .open-menu .ds_leftbar_main{opacity: 1;
    visibility: visible;
    background: #fff;
    position: relative;}
    .open-menu .leftbar {left: 0;height: 95vh;width: 100%;margin: 0;}
	.ds_rightbar{margin-left: 0;padding: 25px 15px;}
	/** Sidabar end **/
}
@media (max-width: 991px){
	/* right sidebar start */ 
	.wd-side-line::after{display: none;}
	.wd-wlcome-side, .wd-job-tab .tab-content .col-lg-6{margin-bottom: 15px;}
	.wd-white-box{padding: 15px;}
	.wd-white-box-compact{padding: 5px;}
	/*pricing */
	.pricing_main .wd_srch_bx{font-size: 18px;}
	main{padding: 77px 0 0;}



}
@media (max-width: 767px)
{
	.wd-job-dtls{display: block;}
	.wd-job-dtls-right{align-items: flex-start;}
	.wd-job-files, .price_brand{margin-bottom: 20px;}
	/*contact us*/
	.submit-btn .wd-dshbord-btn{width: 50%;}
	.wd-annual-value{gap:20px;}
	.pricing_main{padding: 0;}
	.wd-wlcome-side{display: block;}
	.wd-side-lft{margin-bottom: 1rem;}
}

  /* Welcome Screen Styles for Users with Jobs */
  .welcome-screen {
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px;
    border: 1px solid #e9ecef;
  }

  .welcome-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 600;
  }

  .welcome-content p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  /* Simple welcome screen */
  .welcome-screen-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    min-height: 300px;
  }
  
  .welcome-icon {
    margin-bottom: 24px;
  }
  
  .welcome-screen-simple h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
  }
  
  .welcome-screen-simple p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 400px;
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .feature-item .icon {
    font-size: 1.5rem;
    width: 32px;
    flex-shrink: 0;
  }

  .feature-item span:not(.icon) {
    color: #495057;
    font-weight: 500;
  }

  .welcome-action .hint {
    color: #6c757d;
    font-style: italic;
    margin: 20px 0 10px 0;
    font-size: 0.95rem;
  }

  .welcome-action .job-count {
    color: #2181FF;
    font-weight: 600;
    margin: 10px 0 0 0;
    font-size: 1.1rem;
  }

.assistant-feed-panel {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.assistant-feed-panel__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.assistant-feed-panel__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.assistant-feed-panel__caption {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
}

.assistant-feed-panel__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assistant-nudge-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.assistant-nudge-card:hover {
    background-color: #ffffff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.assistant-nudge-card__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.assistant-nudge-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.assistant-nudge-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1d4ed8;
    background-color: #dbeafe;
    border-radius: 999px;
    padding: 2px 10px;
    white-space: nowrap;
}

.assistant-nudge-card__meta {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 8px;
}

.assistant-nudge-card__body {
    font-size: 0.95rem;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.assistant-nudge-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.assistant-nudge-card__actions button {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.assistant-nudge-card__actions button.primary {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
}

.assistant-nudge-card__actions button.primary:hover {
    background-color: #1d4ed8;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.assistant-nudge-card__actions button.primary:disabled {
    background-color: #93c5fd;
    cursor: wait;
}

.assistant-nudge-card__actions button.secondary {
    background-color: transparent;
    color: #1e293b;
    border: 1px solid #cbd5f5;
}

.assistant-nudge-card__actions button.secondary:hover {
    background-color: #e2e8f0;
}

.assistant-feed-empty,
.assistant-feed-error {
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 10px;
}

.assistant-feed-empty {
    color: #516177;
    border: 1px dashed #cbd5f5;
    background-color: #f8fafc;
    text-align: center;
}

.assistant-feed-error {
    color: #b91c1c;
    border: 1px solid #fecaca;
    background-color: #fef2f2;
}

/* Assistant feed: grouped top matches */
.assistant-nudge-card.variant-top_matches_group {
    padding-bottom: 10px;
}

.assistant-nudge-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.assistant-nudge-group__item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f9fafb;
}

.assistant-nudge-group__item:hover {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.assistant-nudge-group__title {
    font-size: 0.95rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.25rem;
}

.assistant-nudge-group__controls {
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-rows: auto;
    gap: 8px;
    justify-items: end;
}

.assistant-nudge-group__controls button {
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.85rem;
}

.assistant-nudge-group__score {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1d4ed8;
    background-color: #dbeafe;
    border-radius: 999px;
    padding: 2px 8px;
    grid-column: 1 / span 2; /* top row spanning both columns */
}

@media (max-width: 640px) {
  .assistant-nudge-group__item {
    grid-template-columns: 1fr;
  }
  .assistant-nudge-group__controls {
    grid-template-columns: auto auto;
    justify-content: start;
    justify-items: start;
  }
  .assistant-nudge-group__score {
    justify-self: start;
  }
}


/* ====================================== */
/* Continuous Feed Ticker */
/* ====================================== */
/* .feed-ticker {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    overflow: hidden;
    height: 44px;
    position: relative;
} */

/* .ticker-content {
    display: flex;
    gap: 26px;
    animation: scroll-ticker 2s linear infinite;
    will-change: transform;
    animation-play-state: paused;
}

.ticker-content.scrolling {
    animation-play-state: running;
}

@keyframes scroll-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    white-space: nowrap;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
} */

/* ====================================== */
/* Category Tabs - Accordion Pattern */
/* ====================================== */
.feed-categories {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.category-tabs-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.category-tab {
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    align-items: center;
    justify-content: space-evenly;
}

.category-tab:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.category-tab.active {
    background-color: #eff6ff;
    border-color: #2181FF;
    box-shadow: 0 2px 8px rgba(33, 129, 255, 0.15);
}

.category-tab.has-new {
    animation: tab-pulse 1s ease-in-out 3;
    border-color: #2181FF;
}

@keyframes tab-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(33,129,255,0.3);
    }
}

/* Tab button elements */
.tab-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.tab-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #0f172a;
    line-height: 1.2;
}

.tab-count {
    background: #2181FF;
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 12px;
    text-align: center;
}

.tab-count.empty {
    background: #cbd5e1;
}

.tab-expand {
    font-size: 0.7rem;
    color: #64748b;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.category-tab.active .tab-expand {
    transform: rotate(180deg);
}

/* Content area below tabs - normal flow, not absolute */
.category-content-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white;
    border-radius: 8px;
}

.category-content-area.expanded {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
}

.category-content-area .assistant-nudge-card {
    margin-bottom: 12px;
}

.category-content-area .assistant-nudge-card:last-child {
    margin-bottom: 0;
}

/* Empty state for tabs */
.tab-empty-state {
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive adjustments for ticker and tabs */
@media (max-width: 768px) {
    .feed-ticker {
        height: 40px;
        padding: 10px 12px;
    }

    .ticker-item {
        font-size: 0.85rem;
    }

    .category-tabs-row {
        gap: 8px;
    }

    .category-tab {
        min-width: 110px;
        max-width: 150px;
        padding: 8px 10px;
        gap: 4px;
    }

    .tab-icon {
        font-size: 1.3rem;
    }

    .tab-title {
        font-size: 0.75rem;
    }

    .tab-count {
        padding: 2px 8px;
        font-size: 0.7rem;
    }

    .category-content-area.expanded {
        max-height: 600px;
    }
}

/* Assistant feed: agent activity narration */
.assistant-activity {
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
    padding-top: 8px;
}

.assistant-activity__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.assistant-activity__toggle {
    font-size: 0.85rem;
    padding: 4px 8px;
    border: 1px solid #cbd5f5;
    background: transparent;
    color: #1e293b;
    border-radius: 6px;
    cursor: pointer;
}

.assistant-activity__toggle:hover {
    background: #e2e8f0;
}

.assistant-activity__list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: #475569;
}

.assistant-activity__list li {
    padding: 4px 0;
}

@media (max-width: 991px) {
    .assistant-feed-panel {
      margin-bottom: 16px;
    }

    .assistant-nudge-card__actions {
      flex-direction: column;
    }
}

/* Responsive Design */
  @media (max-width: 768px) {
    .welcome-screen {
      margin: 10px;
      padding: 30px 15px;
    }
    
    .welcome-content h2 {
      font-size: 1.5rem;
    }
    
    .feature-list {
      max-width: 100%;
    }
    
    .feature-item {
      padding: 12px;
    }
    
    .welcome-screen-simple {
      padding: 40px 20px;
      min-height: 250px;
    }
    
    .welcome-screen-simple h2 {
      font-size: 1.3rem;
    }
    
    .welcome-screen-simple p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 640px) {
	.category-pill {
	  padding: 0.375rem 0.75rem;
	  font-size: 0.75rem;
	}
  }





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



        .container {
            max-width: 1400px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
            background: #f5f7fa;
            min-height: 100vh;
            padding: 40px 20px;
          }

        .header {
            text-align: center;
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .header h1 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1f36;
            margin-bottom: 12px;
        } */

        .header .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .header p {
            color: #64748b;
            font-size: 16px;
        }

        .design-selector {
            display: flex;
            gap: 16px;
            margin-bottom: 50px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .design-btn {
            padding: 14px 28px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: #64748b;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .design-btn:hover {
            border-color: #667eea;
            color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }

        .design-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .design-view {
            display: none;
            min-height: 600px;
        }

        .design-view.active {
            display: block;
            animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .design-info {
            text-align: center;
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .design-info h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1f36;
        }

        .design-info p {
            color: #64748b;
            font-size: 16px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        /* VARIATION 1: Clean Professional Light */
        /* .clean-light {
            padding: 2px;
        } */

        .ambient-bar-v1 {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ambient-bar-v1:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .bar-compact-v1 {
            padding: 6px 10px;
            display: flex;
            align-items: center;
            column-gap: 12px;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }

        .bar-compact-v1:hover {
            background: #f8f9fb;
        }

        .bar-left-v1 {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
        }

        .activity-orb-v1 {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            position: relative;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .orb-pulse-v1 {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            border: 3px solid #667eea;
            animation: pulsateV1 2s ease-in-out infinite;
        }

        @keyframes pulsateV1 {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        .bar-activities-v1 {
            flex: 1;
            overflow: visible; /* allow tooltips and full-width layout */
            width: 100%;
        }

        .activity-ticker-v1 {
            display: flex;
            gap: 40px;
            animation: tickerV1 15s linear infinite;
        }

        @keyframes tickerV1 {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .activity-item-v1 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            white-space: nowrap;
            color: #475569;
        }

        .activity-icon-v1 {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .ticker-wrapper-v1 {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bar-right-v1 {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            padding-top: 20px;
            align-items: center;
            gap: 20px;
        }

        .nudge-count-v1 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .count-badge-v1 {
            background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .expand-btn-v1 {
            background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .expand-btn-v1:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
        }

        .expand-btn-v1 .expand-indicator {
            transition: transform 0.3s;
            display: inline-block;
        }

        .ambient-bar-v1.expanded .expand-btn-v1 .expand-indicator {
            transform: rotate(180deg);
        }

        .bar-expanded-v1 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ambient-bar-v1.expanded .bar-expanded-v1 {
            max-height: 1200px;
        }

        .categories-grid-v1 {
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            background: #f8f9fb;
        }

        .category-card-v1 {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .category-card-v1:hover {
            border-color: #667eea;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
        }

        .category-header-v1 {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            border-bottom: 2px solid #f1f5f9;
        }

        .category-info-v1 {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .category-emoji-v1 {
            font-size: 28px;
        }

        .category-text-v1 h4 {
            font-size: 16px;
            color: #1a1f36;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .category-text-v1 p {
            font-size: 13px;
            color: #64748b;
        }

        .category-badge-v1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
        }

        .category-cards-v1 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-card-v1.expanded .category-cards-v1 {
            max-height: 600px;
        }

        .nudge-card-v1 {
            padding: 16px 20px;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s;
        }

        .nudge-card-v1:last-child {
            border-bottom: none;
        }

        .nudge-card-v1:hover {
            background: #f8f9fb;
        }

        .nudge-title-v1 {
            font-size: 15px;
            font-weight: 600;
            color: #1a1f36;
            margin-bottom: 8px;
        }

        .nudge-meta-v1 {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: #64748b;
            margin-bottom: 8px;
        }

        .nudge-match-v1 {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
        }

        /* VARIATION 2: Soft Gradient Light */
        .soft-gradient {
            padding: 20px;
        }

        .ambient-bar-v2 {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bar-compact-v2 {
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
            transition: all 0.3s;
        }

        .bar-compact-v2:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
        }

        .bar-left-v2 {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .activity-orb-v2 {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            position: relative;
            box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
        }

        .orb-glow-v2 {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 14px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            filter: blur(10px);
            opacity: 0.5;
            animation: glowV2 2s ease-in-out infinite;
        }

        @keyframes glowV2 {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .bar-activities-v2 {
            flex: 1;
            overflow: hidden;
        }

        .activity-ticker-v2 {
            display: flex;
            gap: 45px;
            animation: tickerV2 28s linear infinite;
        }

        @keyframes tickerV2 {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .activity-item-v2 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            white-space: nowrap;
            color: #334155;
            font-weight: 500;
        }

        .activity-icon-v2 {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
        }

        .bar-right-v2 {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nudge-count-v2 {
            background: white;
            padding: 10px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #334155;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .count-badge-v2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .expand-btn-v2 {
            background: white;
            color: #667eea;
            padding: 12px 28px;
            border-radius: 12px;
            border: 2px solid #667eea;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }

        .expand-btn-v2:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
        }

        .bar-expanded-v2 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ambient-bar-v2.expanded .bar-expanded-v2 {
            max-height: 1200px;
        }

        .categories-grid-v2 {
            padding: 32px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
        }

        .category-card-v2 {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .category-card-v2:hover {
            border-color: #667eea;
            box-shadow: 0 12px 28px rgba(102, 126, 234, 0.2);
            transform: translateY(-4px);
        }

        .category-header-v2 {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
            border-bottom: 2px solid #f1f5f9;
        }

        .category-info-v2 {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .category-icon-v2 {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .category-text-v2 h4 {
            font-size: 17px;
            color: #1a1f36;
            margin-bottom: 4px;
            font-weight: 700;
        }

        .category-text-v2 p {
            font-size: 13px;
            color: #64748b;
        }

        .category-badge-v2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .category-cards-v2 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-card-v2.expanded .category-cards-v2 {
            max-height: 600px;
        }

        .nudge-card-v2 {
            padding: 20px 24px;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s;
        }

        .nudge-card-v2:last-child {
            border-bottom: none;
        }

        .nudge-card-v2:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
            transform: translateX(4px);
        }

        .nudge-title-v2 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1f36;
            margin-bottom: 10px;
        }

        .nudge-meta-v2 {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: #64748b;
            margin-bottom: 10px;
        }

        .nudge-match-v2 {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
        }

        /* VARIATION 3: Elevated Card Style */
        .elevated-card {
            padding: 20px;
        }

        .ambient-bar-v3 {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ambient-bar-v3:hover {
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .bar-compact-v3 {
            padding: 28px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .bar-compact-v3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .bar-compact-v3:hover::before {
            opacity: 1;
        }

        .bar-left-v3 {
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .activity-orb-v3 {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            position: relative;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .orb-rings-v3 {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .ring-v3 {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(102, 126, 234, 0.4);
            border-radius: 16px;
            animation: ringExpand 3s ease-out infinite;
        }

        .ring-v3:nth-child(2) {
            animation-delay: 1s;
        }

        .ring-v3:nth-child(3) {
            animation-delay: 2s;
        }

        @keyframes ringExpand {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .orb-content-v3 {
            position: relative;
            z-index: 1;
        }

        .bar-activities-v3 {
            flex: 1;
            overflow: hidden;
        }

        .activity-ticker-v3 {
            display: flex;
            gap: 50px;
            animation: tickerV3 32s linear infinite;
        }

        @keyframes tickerV3 {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .activity-item-v3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            white-space: nowrap;
            color: #334155;
            font-weight: 500;
        }

        .activity-icon-v3 {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border: 2px solid #bfdbfe;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .bar-right-v3 {
            display: flex;
            align-items: center;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .stats-preview-v3 {
            display: flex;
            gap: 20px;
        }

        .stat-item-v3 {
            text-align: center;
        }

        .stat-value-v3 {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label-v3 {
            font-size: 11px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }

        .expand-btn-v3 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
        }

        .expand-btn-v3:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        .bar-expanded-v3 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ambient-bar-v3.expanded .bar-expanded-v3 {
            max-height: 1200px;
        }

        .categories-grid-v3 {
            padding: 36px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
            background: #f8f9fb;
        }

        .category-card-v3 {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .category-card-v3:hover {
            box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
            transform: translateY(-6px);
        }

        .category-header-v3 {
            padding: 26px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
            border-bottom: 3px solid #e2e8f0;
            transition: all 0.3s;
        }

        .category-card-v3:hover .category-header-v3 {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            border-bottom-color: #667eea;
        }

        .category-info-v3 {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .category-icon-v3 {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
        }

        .category-text-v3 h4 {
            font-size: 18px;
            color: #1a1f36;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .category-text-v3 p {
            font-size: 14px;
            color: #64748b;
        }

        .category-badge-v3 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 18px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .category-cards-v3 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-card-v3.expanded .category-cards-v3 {
            max-height: 700px;
        }

        .nudge-card-v3 {
            padding: 22px 26px;
            border-bottom: 2px solid #f1f5f9;
            transition: all 0.3s;
        }

        .nudge-card-v3:last-child {
            border-bottom: none;
        }

        .nudge-card-v3:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.04), rgba(118, 75, 162, 0.04));
            transform: translateX(6px);
        }

        .nudge-title-v3 {
            font-size: 17px;
            font-weight: 700;
            color: #1a1f36;
            margin-bottom: 10px;
        }

        .nudge-meta-v3 {
            display: flex;
            gap: 16px;
            font-size: 14px;
            color: #64748b;
            margin-bottom: 12px;
        }

        .nudge-match-v3 {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 14px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        /* Expand indicators */
        .expand-indicator {
            transition: transform 0.3s;
            font-size: 18px;
            color: #94a3b8;
        }

        .category-card-v1.expanded .category-header-v1 .expand-indicator,
        .category-card-v2.expanded .category-header-v2 .expand-indicator,
        .category-card-v3.expanded .category-header-v3 .expand-indicator {
            transform: rotate(180deg);
        }

        /* Support active class for expand indicator rotation */
        .category-card-v1.active .category-header-v1 .expand-indicator {
            transform: rotate(180deg);
        }










        .agent-identity-section {
            padding: 16px 16px;
            background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
            border-bottom: 2px solid #e2e8f0;
        }

        .agent-profile {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .agent-avatar-v1 {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        }

        .avatar-shimmer-v1 {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmerV1 3s infinite;
        }

        @keyframes shimmerV1 {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .agent-info-v1 {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .agent-name-v1 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1f36;
        }

        .agent-status-v1 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #64748b;
        }

        .status-wave-v1 {
            display: flex;
            gap: 3px;
        }

        .wave-bar-v1 {
            width: 2px;
            height: 10px; /* base height, overridden by mode */
            background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
            border-radius: 2px;
        }

        /* Idle mode: slower, shorter waves */
        .status-wave-v1.idle .wave-bar-v1 {
            animation: waveIdle 1.8s ease-in-out infinite;
        }
        /* Active mode: faster, higher waves */
        .status-wave-v1.active .wave-bar-v1 {
            animation: waveActive 0.8s ease-in-out infinite;
        }

        .wave-bar-v1:nth-child(2) { animation-delay: 0.1s; }
        .wave-bar-v1:nth-child(3) { animation-delay: 0.2s; }
        .wave-bar-v1:nth-child(4) { animation-delay: 0.3s; }

        @keyframes waveIdle {
            0%, 100% { height: 10px; opacity: 0.5; }
            50% { height: 14px; opacity: 0.9; }
        }
        @keyframes waveActive {
            0%, 100% { height: 14px; opacity: 0.7; }
            50% { height: 22px; opacity: 1; }
        }

/* ===========================
   Agent Visualization Styles
   =========================== */

/* Agent visualization container */
.agent-visualization-section {
    display: flex;
    align-items: center;
    justify-content: stretch;
    padding: 0.5rem;
    width: 100%;
    overflow: visible;
}

/* Agent flow section */
.agent-flow {
    width: 100%;
}

.agents-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem;
    min-height: 190px;
    z-index: 1;
    width: 100%;
}

/* Agent connections SVG container */
.agent-connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Connection line base styles */
.connection-line {
    stroke: rgb(203, 213, 225);
    stroke-width: 1.5;
    stroke-dasharray: 4, 4;
    stroke-linecap: round;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active connection line - flows FROM agent TO orchestrator */
.connection-line.active {
    stroke: url(#activeLineGradient);
    stroke-width: 2.5;
    stroke-dasharray: 8, 4;
    opacity: 1;
    filter: url(#connectionGlow);
    animation: connectionPulse 2s ease-in-out infinite,
               flowToOrchestrator 1.5s linear infinite;
}

/* Request flow connection line - flows FROM orchestrator TO agent (user action triggered) */
.connection-line.request-flow {
    stroke: url(#activeLineGradient);
    stroke-width: 2.5;
    stroke-dasharray: 8, 4;
    opacity: 1;
    filter: url(#connectionGlow);
    animation: connectionPulse 2s ease-in-out infinite,
               flowToWorker 1.5s linear infinite;
}

/* Pulsing animation for active connections */
@keyframes connectionPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Flow animation - particles flow FROM agent TO orchestrator (upward) */
@keyframes flowToOrchestrator {
    0% {
        stroke-dashoffset: 12;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes flowToWorker {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -12;
    }
}

/* Agent wrapper */
.agent-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 18px;
    z-index: 2;
}

/* Agent node */
.agent-node {
    position: relative;
    width: 2rem;
    height: 2rem;
    transition: all 0.3s ease;
}

.agent-node.orchestrator {
    width: 2.5rem;
    height: 2.5rem;
}
/* Move assistant down slightly to shorten line to writer */
.agent-wrapper[data-agent="orchestrator"] {
    transform: translateY(22px);
}

/* Nudge count badge on orchestrator */
.assistant-nudge-count {
    position: absolute;
    top: -6px;
    left: -6px;
    min-width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    z-index: 3;
}

/* Assistant expand toggle (chevron) next to label */
.assistant-expand-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    width: 0.875rem;
    height: 0.875rem;
    vertical-align: middle;
}
.assistant-expand-toggle .chevron-svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}
.agent-wrapper[data-agent="orchestrator"]:hover .assistant-expand-toggle .chevron-svg {
    color: #64748b;
}
.ambient-bar-v1.expanded .assistant-expand-toggle .chevron-svg {
    transform: rotate(180deg);
}

/* Pulse rings for activity */
.pulse-ring,
.pulse-ring-delayed {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgb(96, 165, 250);
    opacity: 0;
    pointer-events: none;
}

.pulse-ring-delayed {
    animation-delay: 0.5s;
}

.agent-node.active .pulse-ring {
    animation: agentPing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.3;
}

.agent-node.active .pulse-ring-delayed {
    animation: agentPing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.2;
}

/* Nudge glow */
.nudge-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    /* background-color: rgb(250, 204, 21); */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.agent-node.has-nudge .nudge-glow {
    animation: agentPulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    opacity: 1;
}

/* Nudge notification dot */
.nudge-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgb(250, 204, 21);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nudge-dot::after {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: rgb(113, 63, 18);
    border-radius: 50%;
}

.agent-node.has-nudge .nudge-dot {
    display: flex;
}

/* Agent circle */
.agent-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom right, #cbd5e1, #94a3b8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orchestrator .agent-circle {
    background: linear-gradient(to bottom right, #fb923c, #ea580c);
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.agent-node.active .agent-circle {
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.agent-node.has-nudge .agent-circle {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgb(250, 204, 21);
}

/* Agent icon */
.agent-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.orchestrator .agent-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Agent label */
.agent-label {
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: #64748b;
    transition: color 0.3s ease;
}

.agent-wrapper[data-agent-active="true"] .agent-label {
    color: #3b82f6;
}

/* Flow line */
.flow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(234, 88, 12, 0.3), rgba(59, 130, 246, 0.3), transparent);
    margin: 0 0.5rem;
    min-width: 1rem;
}

/* Worker agents group */
.worker-agents {
    display: flex;
    width: 100%;
    justify-content: space-between; /* spread out the three worker agents */
    gap: 2rem; /* minor gap for spacing aesthetics */
}

/* Keep worker agents aligned baseline; adjust assistant position instead */

/* Inline nudge tooltip */
.inline-nudge {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 20;
}

.inline-nudge.visible {
    opacity: 1;
    visibility: visible;
    animation: slideInFromTop 0.3s ease-out;
}

.inline-nudge::before {
    content: attr(data-message);
    display: block;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    border: 2px solid #cbd9e6;
    border-radius: 1rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #fff;
}

/* Agent History Panel */
.agent-history-panel {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.agent-history-header {
    margin-bottom: 0.75rem;
}

.agent-history-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1f36;
    margin: 0;
}

.agent-history-content {
    max-height: 16rem;
    overflow-y: auto;
}

.agent-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Custom scrollbar for history */
.agent-history-list::-webkit-scrollbar {
    width: 0.375rem;
}

.agent-history-list::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.5);
    border-radius: 0.25rem;
}

.agent-history-list::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 0.25rem;
}

.agent-history-list::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.7);
}

/* No updates message */
.no-updates {
    font-size: 0.75rem;
    color: #94a3b8;
    font-style: italic;
    padding: 1rem 0;
    text-align: center;
}

/* History item */
.history-item {
    padding: 0.625rem;
    border-radius: 0.375rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease-out;
}

.history-item.latest {
    border-color: rgba(250, 204, 21, 0.5);
    background-color: #fffbeb;
}

.history-item-content {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.history-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #cbd5e1;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.history-item.latest .history-dot {
    background-color: rgb(250, 204, 21);
}

.history-item-details {
    flex: 1;
    min-width: 0;
}

.history-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.history-item-agent {
    font-size: 0.6875rem;
    font-weight: 600;
}

.history-item-agent.orchestrator {
    color: #ea580c;
}

.history-item-agent.scout {
    color: #3b82f6;
}

.history-item-agent.writer {
    color: #9333ea;
}

.history-item-agent.coach {
    color: #ec4899;
}

.history-item-time {
    font-size: 0.625rem;
    color: #94a3b8;
}

.history-item-message {
    font-size: 0.75rem;
    color: #475569;
    line-height: 1.4;
}

/* Animations */
@keyframes agentPing {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes agentPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translate(-50%, -0.625rem);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-0.5rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade effect for older history items */
.history-item[data-index="1"] {
    opacity: 0.85;
}

.history-item[data-index="2"] {
    opacity: 0.7;
}

.history-item[data-index="3"] {
    opacity: 0.55;
}

.history-item[data-index="4"] {
    opacity: 0.4;
}

/* Mobile responsiveness - show active agents only on small screens */
@media (max-width: 768px) {
    .agent-wrapper {
        display: none;
    }

    .agent-wrapper[data-agent-active="true"],
    .agent-wrapper .agent-node.active,
    .agent-wrapper .agent-node.has-nudge {
        display: flex;
    }

    /* Show orchestrator on mobile even when not active */
    .agent-wrapper[data-agent="orchestrator"] {
        display: flex;
    }

    .worker-agents {
        gap: 0.5rem;
    }

    .flow-line {
        min-width: 0.5rem;
        margin: 0 0.25rem;
    }

    .inline-nudge {
        max-width: 150px;
        white-space: normal;
        font-size: 0.5625rem;
    }
}

/* ===========================
   Agent Actions Compact (Nudge Count + Expand Icon)
   =========================== */

.agent-actions-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0 0.5rem;
    cursor: default; /* no expand here anymore */
    transition: opacity 0.2s ease;
    flex: 0 0 8%;
    max-width: 10%;
    justify-content: flex-end;
}

.agent-actions-compact:hover { opacity: 1; }

.nudge-badge-compact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nudge-badge-compact .count-badge-v1 {
    min-width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: #fff;
    border: 1px solid #8CA1A7;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 0.25rem;
}

.expand-icon-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.expand-icon-compact .chevron-svg {
    width: 1rem;
    height: 1rem;
    color: #64748b;
    transition: color 0.2s ease;
}

.agent-actions-compact:hover .chevron-svg {
    color: #3b82f6;
}

/* Rotate chevron when expanded */
.bar-compact-v1.expanded .expand-icon-compact {
    transform: rotate(180deg);
}

/* ===========================
   Collapsible Agent History Panel
   =========================== */

.agent-history-panel {
    border-bottom: 1px solid #e2e8f0;
}

.agent-history-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 0.5rem;
}

.agent-history-toggle:hover {
    background-color: #f1f5f9;
}

.agent-history-toggle-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1f36;
    flex: 1;
    text-align: left;
}

.agent-history-badge {
    min-width: 1.25rem;
    height: 1.25rem;
    display: none; /* Hidden by default, shown by JavaScript when count > 0 */
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 204, 21, 0.2);
    color: #854d0e;
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0 0.25rem;
}

.agent-history-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chevron-svg-small {
    width: 0.875rem;
    height: 0.875rem;
    color: #94a3b8;
}

/* Rotate chevron when expanded */
.agent-history-toggle.expanded .agent-history-chevron {
    transform: rotate(180deg);
}

/* Collapsible content */
.agent-history-content {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.agent-history-content.collapsed {
    max-height: 0;
}

.agent-history-content.expanded {
    max-height: 16rem;
}

/* Update existing agent-history-panel styles */
.agent-history-content .agent-history-list {
    padding: 0.75rem 1rem;
}

/* ===========================
   Beautified Alerts (banners + toasts)
   =========================== */

.jh-banner-container {
    position: sticky;
    top: 56px; /* below header */
    z-index: 10010;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
}

.jh-toast-container {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 10010; /* above restore controls */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* let clicks through gaps */
}

.jh-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    color: #1a1f36;
    pointer-events: auto;
}

.jh-alert--toast {
    min-width: 260px;
}

.jh-alert__icon svg { color: #64748b; }
.jh-alert__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.jh-alert__message { font-size: 0.875rem; }

.jh-alert__close {
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    color: #64748b;
}
.jh-alert__close:hover { background: rgba(2, 132, 199, 0.08); color: #0ea5e9; }

.jh-alert--success { border-color: #86efac; background: linear-gradient(0deg, rgba(134,239,172,0.08), rgba(134,239,172,0.08)), #fff; }
.jh-alert--info { border-color: #93c5fd; background: linear-gradient(0deg, rgba(147,197,253,0.08), rgba(147,197,253,0.08)), #fff; }
.jh-alert--warning { border-color: #fcd34d; background: linear-gradient(0deg, rgba(252,211,77,0.12), rgba(252,211,77,0.12)), #fff; }
.jh-alert--danger { border-color: #fca5a5; background: linear-gradient(0deg, rgba(252,165,165,0.12), rgba(252,165,165,0.12)), #fff; }

@media (max-width: 768px) {
    .jh-toast-container {
        right: 0;
        left: 0;
        top: auto;
        bottom: 16px;
        align-items: center;
        padding: 0 12px;
    }
    .jh-alert--toast { width: 100%; max-width: 520px; }
}

@media (prefers-reduced-motion: reduce) {
    .jh-alert { transition: none !important; }
}

/* ===========================
   Lightweight Confirm Modal
   =========================== */
.jh-confirm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 10020; /* above toasts and restore controls */
    display: flex;
    align-items: center;
    justify-content: center;
}
.jh-confirm-modal {
    background: #fff;
    color: #1a1f36;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    width: min(92vw, 420px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.jh-confirm-header {
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.jh-confirm-body {
    padding: 14px 16px;
    font-size: 0.95rem;
}
.jh-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 16px 14px 16px;
}
.jh-btn { border: none; border-radius: 8px; padding: 8px 12px; cursor: pointer; font-weight: 600; }
.jh-btn-primary { background: #2181FF; color: #fff; }
.jh-btn-primary:hover { background: #1557b0; }
.jh-btn-secondary { background: #f1f5f9; color: #1a1f36; }
.jh-btn-secondary:hover { background: #e2e8f0; }


.wd_explore_container {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8fafc;
    padding: 5px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.search-section {
    max-width: 900px;
    width: 100%;
    padding: 4px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Title Section */
.title-section {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e2e8f0;
}

.title-section h4{
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    border-radius: 10px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* CV Selection */
.cv-selection {
    margin-bottom: 16px;
    padding: 4px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.cv-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569;
    letter-spacing: 0.5px;
}

.cv-label svg {
    color: #475569;
}

.cv-controls {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}


.cv-dropdown {
    border-radius: 8px;
    font-size: 13px;
    background-color: white;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.cv-dropdown:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.upload-btn {
    padding: 5px 8px;
    background-color: white;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
    white-space: nowrap;
}

.upload-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
}

/* Search Form */
.search-form {
    display: flex;
    flex-direction: column;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    background-color: white;
    color: #1e293b;
    transition: all 0.2s;
    outline: none;
}

.search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input::placeholder {
    color: #94a3b8;
}

select.search-input {
    cursor: pointer;
}

.search-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
    margin-top: 4px;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

/* Recent Searches Accordion */
.recent-searches-wrapper {
    margin-top: 24px;
    position: relative;
}

.stack-layer {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 8px;
    background-color: #f1f5f9;
    border-radius: 10px 10px 0 0;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    transition: opacity 0.3s, transform 0.3s;
}

.stack-layer-1 {
    top: -4px;
}

.stack-layer-2 {
    top: -8px;
    left: 16px;
    right: 16px;
    background-color: #f8fafc;
}

.recent-searches-wrapper.expanded .stack-layer {
    opacity: 0;
    transform: translateY(4px);
}

.recent-searches-wrapper:hover:not(.expanded) .recent-searches-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.recent-searches-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background-color: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f1f5f9;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon {
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.search-count {
    background-color: #e0e7ff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #3730a3;
    font-weight: 600;
}

.chevron {
    color: #64748b;
    transition: transform 0.3s;
}

.chevron.rotated {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.expanded {
    max-height: 1000px;
}

.recent-searches-list {
    padding: 20px;
    background-color: white;
}

/* Recent Search Item */
.search-item {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: white;
    margin-bottom: 12px;
}

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

.search-item:hover {
    border-color: #2563eb;
    background-color: #f8fafc;
    transform: translateX(4px);
}

.search-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.search-item-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: #0f172a;
}

.search-item-location {
    color: #64748b;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-item-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stat-dot.matches {
    background-color: #10b981;
}

.stat-dot.applied {
    background-color: #3b82f6;
}

.stat-dot.interviews {
    background-color: #8b5cf6;
}

.stat-value {
    font-weight: 600;
    color: #0f172a;
}

.stat-label {
    color: #64748b;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-content.expanded .recent-searches-list {
    animation: slideDown 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .search-section {
        padding: 20px;
    }

    .title {
        font-size: 24px;
    }

    .cv-controls {
        flex-direction: column;
    }

    .cv-dropdown,
    .upload-btn {
        width: 100%;
    }

    .search-item-stats {
        flex-wrap: wrap;
    }
}

.download-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.format-selector {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 4px;
    display: none;
    flex-direction: column;
    gap: 2px;
    min-width: 100px;
    z-index: 10;
}

.format-selector.active {
    display: flex;
}

.format-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
}

.format-option:hover {
    background: #f3f4f6;
}

.format-option svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
    stroke-width: 2;
}

.format-option span {
    flex: 1;
    text-align: left;
}

/* Job Source Logo Styling - Phase 2.6 */
.wd_job_source {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}


.job-external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4A5568;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.job-external-link:hover {
    background-color: #fff;
    border-color: #4A5568;
    color: #2D3748;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-external-link:active {
    transform: translateY(0);
}

.job-external-link svg {
    width: 14px;
    height: 14px;
}

/* Match percentage update animation */
.match-percentage-updated {
    animation: matchPercentageHighlight 2s ease-in-out;
}

@keyframes matchPercentageHighlight {
    0% {
        background-color: transparent;
        transform: scale(1);
    }
    15% {
        background-color: #10B981;
        color: white;
        transform: scale(1.05);
        padding: 4px 8px;
        border-radius: 4px;
    }
    50% {
        background-color: #10B981;
        color: white;
        transform: scale(1.05);
        padding: 4px 8px;
        border-radius: 4px;
    }
    100% {
        background-color: transparent;
        transform: scale(1);
        padding: 0;
    }
}

/* Bookmarklet Modal Styles */
.bookmarklet-modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.bookmarklet-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.bookmarklet-button-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    margin-bottom: 30px;
}

.bookmarklet-button-section h6 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.bookmarklet-button-section p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.bookmarklet-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2181FF 0%, #3a55ad 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    cursor: move;
    border: 2px dashed rgba(255,255,255,0.3);
}

.bookmarklet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #3a55ad 0%, #2181FF 100%);
}

.bookmarklet-button i {
    margin-right: 8px;
}

.drag-instructions {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
}

.arrow-animation {
    display: inline-block;
    animation: bounce 2s infinite;
    margin-left: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.how-to-section {
    margin-bottom: 30px;
}

.how-to-section h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.how-to-section .step {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.how-to-section .step:hover {
    background: #e9ecef;
}

.how-to-section .step-content strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.how-to-section .step-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.supported-sites {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.supported-sites h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.site-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    font-size: 0.9rem;
}

.site-item i {
    color: #27ae60;
    margin-right: 8px;
    font-size: 1rem;
}

.site-item span {
    color: #2c3e50;
    font-weight: 500;
}

.benefits {
    margin-top: 30px;
}

.benefits h6 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit-card {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.benefit-card strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.benefit-card p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Empty State Card */
.empty-state-card {
    text-align: center;
    padding: 5px 2px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin: 3px 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.empty-state-card i {
    font-size: 4rem;
    color: #2181FF;
    margin-bottom: 10px;
}

.empty-state-card h4 {
    /* font-size: 2rem; */
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-state-card p {
    /* font-size: 1.1rem; */
    color: #7f8c8d;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* line-height: 1.6; */
}

.empty-state-card .wd-dshbord-btn-compact {
    display: inline-block;
    margin: 10px;
}



