/* LinkedIn Post Data Extraction Service - Premium Styles with Tailwind */

/* Custom styles for elements not covered by Tailwind */
body {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    font-family: 'Inter', system-ui, sans-serif;
}


/* Sticky column styles for the demo table */
.sticky-column {
    position: sticky;
    left: 0;
    background: #0a66c2;
    color: white;
    z-index: 10;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* Sticky column data cells - match row highlight color */
tbody .sticky-column {
    background-color: #f9fafb;
    color: #374151;
}

/* Author Headline column - size to content */
th:nth-last-child(1),
td:nth-last-child(1) {
    white-space: nowrap;
}

/* Custom scrollbar for demo table */
.demo-table-container::-webkit-scrollbar {
    height: 8px;
}

.demo-table-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.demo-table-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.demo-table-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Font Awesome fallbacks */
.fas, .fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Fallback icons if Font Awesome doesn't load */
.fa-check::before { content: "✓"; }
.fa-spinner::before { content: "⟳"; }
.fa-arrow-left::before { content: "←"; }
.fa-credit-card::before { content: "💳"; }
.fa-check-circle::before { content: "✓"; }
.fa-download::before { content: "⬇"; }
.fa-file-csv::before { content: "📊"; }
.fa-plus::before { content: "+"; }
.fa-user::before { content: "👤"; }
.fa-building::before { content: "🏢"; }
.fa-globe::before { content: "🌐"; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
*:focus {
    outline: 2px solid #0a66c2;
    outline-offset: 2px;
}