/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.25;
}

/* Control Panel Pills - Updated layout */
.control-panel {
    position: fixed;
    top: 90px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}

.control-pill {
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 300px;
    text-align: center;
}

.control-pill:first-child {
    background: rgba(74, 222, 128, 0.3);
    color: #16a34a;
    border: 1px solid #4ade80;
}

.control-pill:first-child.active {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #ffffff;
    border: 1px solid transparent;
}

.control-pill:last-child {
    background: rgba(59, 130, 246, 0.3);
    color: #2563eb;
    border: 1px solid #3b82f6;
}

.control-pill:last-child.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: 1px solid transparent;
}

.control-pill:hover {
    transform: scale(1.02);
}

.control-pill span {
    white-space: nowrap;
}

/* Top Navigation */
.top-nav {
    background: #FFFFFF;
    color: #24292F;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.linkedin-logo {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-svg {
    height: 24px;
    width: auto;
    vertical-align: middle;
}



.nav-center {
    display: flex;
    gap: 4px;
}

.nav-link {
    color: #656C76;
    text-decoration: none;
    padding: 14px 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #24292F;
}

.nav-link.active {
    color: #24292F;
    border-bottom: 3px solid #0A66C2;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-svg {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-svg:hover {
    background-color: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.9);
}

.nav-icon-svg svg {
    transition: color 0.3s ease;
}

.user-avatar {
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar:hover {
    background-color: rgba(0,0,0,0.08);
}

.avatar-svg {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Notification Badge */
.nav-icon-with-badge {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #CB112D;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 16px;
    height: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    transform: translate(2px, -2px);
}

/* Search Header */
.search-header {
    background: #004182;
    padding: 31px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 1px 0 rgba(0,0,0,0.25);
    position: relative;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: absolute;
    left: 24px;
    background: white;
    border-radius: 2px;
    width: 740px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 8px 0;
}





.search-filters {
    display: flex;
    gap: 4px;
    margin-right: 12px;
}

.filter-btn {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(0,0,0,0.08);
    white-space: nowrap;
}

.search-actions {
    display: flex;
    gap: 24px;
    position: absolute;
    left: 788px;
}

.search-link {
    color: white;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* Main Container */
.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 819px 550px;
    gap: 24px;
    align-items: start;
}

/* Left Column - Highlights */
.left-column {
    min-width: 0;
}

.highlights-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.highlights-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 4px solid rgba(0,0,0,0.08);
}

.highlights-icon {
    font-size: 24px;
}

.highlights-title {
    font-weight: 600;
    font-size: 16px;
    flex: 1;
}

.close-icon {
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-icon:hover {
    background-color: rgba(255,255,255,0.2);
}

.highlights-content {
    padding: 24px 16px;
    display: flex;
    gap: 12px;
}

.company-logo img {
    width: 56px;
    height: 56px;
    border-radius: 4px;
}

.highlights-text h3 {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.25;
}

.highlights-text p {
    font-size: 14px;
    color: rgba(0,0,0,0.9);
    margin-bottom: 16px;
    line-height: 1.25;
}

/* Center Column - Alerts Feed */
.center-column {
    min-width: 0;
}

.alerts-feed {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.alerts-header {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.alerts-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.tab {
    flex: 1;
    max-width: 250px;
    padding: 17px 18px;
    background: #fbfbfb;
    border: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
    border-top: 4px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
}

.tab:first-child {
    border-left: none;
}

.tab.active {
    background: white;
    color: #0073b1;
    border-top: 4px solid #0073b1;
    border-left: 1px solid rgba(0,0,0,0.08);
}

.alerts-search {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.alerts-search-input {
    flex: 1;
    padding: 10px 12px;
    background: #f3f6f8;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    font-size: 14px;
    color: rgba(0,0,0,0.08);
}

.sort-text {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.08);
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown-icon {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
}

.sort-text:hover .sort-dropdown-icon {
    color: #666;
}

.alerts-filters {
    padding: 0 15px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.08);
}

.filter-pill {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(0,0,0,0.08);
}

.filter-pill.active {
    background: #0073b1;
    color: white;
    border-color: #0073b1;
}

.alerts-list {
    display: flex;
    flex-direction: column;
}

.alert-item {
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    transition: background-color 0.3s ease;
}

.alert-item:hover {
    background: #f9fafb;
}

.alert-logo img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.headshot-image {
    border-radius: 50% !important;
}

.company-stack {
    position: relative;
    width: 40px;
    height: 40px;
}

.company-stack img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
}

.company-stack img:last-child {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 16px;
    height: 16px;
}

.alert-content {
    flex: 1;
    min-width: 0;
}

.alert-content h4 {
    font-weight: 600;
    font-size: 14px;
    color: rgba(0,0,0,0.9);
    margin-bottom: 4px;
    line-height: 1.43;
}

.company-name {
    color: #0073b1;
}

.alert-meta {
    font-size: 12px;
    color: rgba(0,0,0,0.08);
    margin-bottom: 2px;
}

.alert-time {
    font-size: 12px;
    color: rgba(0,0,0,0.08);
}

.alert-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px;
}

.btn-view {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid #0073b1;
    border-radius: 2px;
    color: #0073b1;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #0073b1;
    border-radius: 50%;
    color: #0073b1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Column - Sidebar */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.sidebar-card .card-header {
    padding: 15px 24px 0px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-header-content {
    display: flex;
    flex-direction: column;
}

.sidebar-card .card-header h3 {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: rgba(0,0,0,0.9);
    line-height: 28px;
}

.card-subtitle {
    font-size: 12px;
    color: rgba(0,0,0,0.9);
    margin-bottom: 16px;
    line-height: 1.25;
}

.edit-icon {
    cursor: pointer;
    color: #6b7280;
    font-size: 20px;
    padding: 12px;
    margin: -12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.edit-icon:hover {
    background: #f3f4f6;
    color: #374151;
}

.notification-badge {
    color: #0073b1;
    font-size: 14px;
}

.card-content {
    padding: 24px 24px 12px 24px;
}

.dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    background: white;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: rgba(0,0,0,0.75);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-chevron {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-chevron {
    color: #666;
}

.business-metrics {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.metric-column {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.metric-number {
    font-size: 16px;
    font-weight: 600;
    color: #0073b1;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: rgba(0,0,0,0.9);
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: left;
}

.metric-icons {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

.company-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.persona-item {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.persona-info {
    flex: 1;
}

.persona-info h4 {
    font-weight: 600;
    font-size: 14px;
    color: rgba(0,0,0,0.9);
    margin-bottom: 4px;
}

.persona-info p {
    font-size: 12px;
    color: rgba(0,0,0,0.08);
    margin-bottom: 4px;
}

.persona-leads {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.avatar-stack {
    display: flex;
    gap: -8px;
}

.avatar-stack img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: -8px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.highlight {
    color: #0073b1;
    font-weight: 600;
}

.priority-account {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.account-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.account-logo {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.account-details h4 {
    font-weight: 600;
    font-size: 16px;
    color: #0073b1;
    margin-bottom: 4px;
}

.account-meta, .account-location {
    font-size: 12px;
    color: rgba(0,0,0,0.08);
}

.account-metrics {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: white;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
}

.metric-value {
    font-weight: 600;
    font-size: 16px;
    color: #0073b1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: rgba(0,0,0,0.08);
}

.growth-icon {
    color: #10b981;
}

.decline-icon {
    color: #ef4444;
}

/* Buttons */
.btn-primary {
    background: #0073b1;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #005885;
}

.btn-secondary {
    background: transparent;
    color: #0073b1;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f9ff;
}

/* Help Panel Dividers */
.help-divider {
    border-bottom: 1px solid rgba(140, 140, 140, 0.2);
    margin: 0;
}

/* Onboarding checklist styles */
.onboarding-checklist {
    padding: 24px;
    background-color: rgba(237, 244, 234, 0.6);
    border-radius: 12px;
    margin: 8px 0 16px 0;
}

.checklist-header {
    margin-bottom: 16px;
}

.checklist-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.checklist-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 4px;
}

.progress-text {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #E9E9E9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #01754F;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    background-color: transparent;
    border-radius: 0;
    cursor: default;
    transition: all 0.2s ease;
    border: none;
}

.checklist-item:hover {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.checklist-item.completed {
    background-color: transparent;
    border-color: transparent;
}

.checklist-item.completed .checklist-item-check {
    background-color: #01754F;
    color: #9DA09C;
}

.checklist-item.completed .checklist-item-check i {
    color: white;
}

.checklist-item.completed .checklist-item-title {
    color: #666666;
}

.checklist-item.completed .checklist-item-subtitle {
    text-decoration: line-through;
    color: #999999;
}

.checklist-item-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checklist-item-check i {
    font-size: 16px;
    color: #9DA09C;
}

.checklist-item-content {
    flex: 1;
}

.checklist-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.checklist-link {
    color: #0A66C2;
    text-decoration: underline;
    font-weight: 600;
}

.checklist-link:hover {
    color: #084B91;
    text-decoration: underline;
}

.checklist-item-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    display: none;
}

/* Hide subtitle for item 4 */
.checklist-item[data-item-id="item4"] .checklist-item-subtitle {
    display: none;
}

/* Align checkmark with center of 2-line title for item 4 */
.checklist-item[data-item-id="item4"] {
    align-items: flex-start;
    margin-top: 4px;
}

.checklist-item[data-item-id="item4"] .checklist-item-check {
    margin-top: 8px;
}

/* Open Cases Section */
.open-cases-section {
    padding: 24px 24px 4px 24px;
    background: #FFFFFF;
}

.open-cases-section h3 {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.case-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(244, 242, 238, 0.6);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    margin-bottom: 20px;
}



.case-content {
    flex: 1;
}

.case-title {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 4px;
}

.case-number {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #656C76;
}

.case-arrow {
    color: #656C76;
    font-size: 14px;
}

/* Help Support Section */
.help-support-section {
    padding: 20px 24px 45px 24px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-support-section h3 {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.chat-support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 24px;
    color: #000000;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    width: auto;
    text-align: center;
    margin: 0;
}

.chat-support-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #000000;
}

.chat-support-btn i {
    color: #000000;
    font-size: 16px;
}

.chat-support-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.chat-icon-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(2441%) hue-rotate(205deg) brightness(95%) contrast(105%);
}

/* Help Panel - Floating Widget */
.help-panel {
    position: fixed;
    top: 70px;
    right: 2rem;
    width: 415px;
    height: auto;
    max-height: calc(100vh - 100px);
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: scale(0) translateY(-20px);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
}

/* Custom scrollbar styling */
.help-panel::-webkit-scrollbar {
    width: 6px;
}

.help-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.help-panel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.help-panel::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.help-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.help-header {
    padding: 16px 24px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-header h2 {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #000000;
    margin: 0;
}

.close-help {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    right: -8px;
}

.close-help:hover {
    background: transparent;
    color: #000000;
}

.help-search {
    padding: 8px 24px 16px 24px;
    border-bottom: 1px solid rgba(140, 140, 140, 0.2);
}

.help-search-container {
    position: relative;
    width: 100%;
}

.help-search-input {
    width: 100%;
    padding: 12px 48px 12px 20px;
    border: 1px solid rgba(140, 140, 140, 0.2);
    border-radius: 8px;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
    background: #FFFFFF;

    transition: all 0.3s ease;
}

.help-search-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    cursor: pointer;
}

.help-search-input:focus {
    outline: none;
    border-color: #0A66C2;
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.help-search-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.help-greeting {
    padding: 20px 24px 0px 24px;
    background: transparent;
    margin: 4pt 0 0 0;
}

.help-greeting p {
    color: #000000;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Recommendations */
.recommendations {
    padding: 20px 24px;
    background: #FFFFFF;
}

.recommendations:has(.onboarding-checklist) {
    padding: 12px 24px 20px 24px;
}

.recommendation-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(237, 243, 248, 0.6);
    box-shadow: none;
}



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

.recommendation-item.expanded {
    background: rgba(237, 243, 248, 0.6);
    box-shadow: none;
}

.recommendation-header {
    padding: 20px 24px 16px 24px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    gap: 16px;
    min-width: 0;
}



.recommendation-header h3 {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    flex: 1;
}

.expand-icon {
    color: #666;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}



.recommendation-content {
    padding: 0 24px 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.recommendation-item.expanded .recommendation-content {
    padding: 0 24px 20px 24px;
    max-height: 400px;
    background: transparent;
}

.recommendation-content p {
    margin-bottom: 16px;
    color: #666666;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.recommendation-content .sales-assistant {
    font-weight: 600;
    color: #333333;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.recommendation-content .btn-primary {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    background: #0A66C2;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-content .btn-primary:hover {
    background: #004182;
    transform: translateY(-1px);
}

.chat-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #0A66C2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A66C2;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-icon:hover {
    background: transparent;
    transform: scale(1.05);
}

.recommendation-links {
    margin-top: 8px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

/* Cache bust: 2024-12-19-v3 */

/* Move first pill closer to CTA button */
.link-item:first-child {
    margin-top: -2px !important;
}

.link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #24292F;
    text-decoration: none;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.15s ease;
    background: rgba(221, 231, 241, 0.8);
    border: none;
    margin: 4px 0;
    cursor: pointer;
    width: auto;
}

.link-item:hover {
    background: rgba(221, 231, 241, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.link-item-static {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333333;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: default;
}

.link-item .diamond-icon {
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

.link-item .diamond-icon::before,
.link-item .diamond-icon::after {
    content: '';
    position: absolute;
    background: #0A66C2;
}

.link-item .diamond-icon::before {
    width: 14px;
    height: 3px;
    top: 5.5px;
    left: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.link-item .diamond-icon::after {
    width: 3px;
    height: 14px;
    top: 0;
    left: 5.5px;
    clip-path: polygon(0% 25%, 50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%);
}

.link-item-static .diamond-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.link-item-static .diamond-icon::before,
.link-item-static .diamond-icon::after {
    content: '';
    position: absolute;
    background: #0A66C2;
}

.link-item-static .diamond-icon::before {
    width: 16px;
    height: 4px;
    top: 6px;
    left: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.link-item-static .diamond-icon::after {
    width: 4px;
    height: 16px;
    top: 0;
    left: 6px;
    clip-path: polygon(0% 25%, 50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%);
}

/* Resources */
.help-resources {
    display: none; /* Temporarily hidden */
    padding: 20px 24px;
    border-top: 1px solid rgba(140, 140, 140, 0.2);
    background: #F3F6F8;
}

.help-resources h3 {
    margin-bottom: 16px;
    color: #000000;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    background: transparent;
}

.resource-link:hover {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.resource-link i {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr 550px;
        grid-template-areas: 
            "center right"
            "left right";
    }
    
    .left-column {
        grid-area: left;
    }
    
    .center-column {
        grid-area: center;
    }
    
    .right-column {
        grid-area: right;
    }
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    .nav-center {
        display: none;
    }
    
    .search-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .help-panel {
        width: calc(100vw - 2rem);
        right: 1rem;
        top: 60px;
        height: auto;
        max-height: calc(100vh - 80px);
    }
}

/* Detail Help Page Styles */
.help-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.main-help-page {
    height: auto;
    overflow: visible;
}

.detail-help-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Back Button Header */
.back-button-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-button {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Detail Content */
.detail-content {
    flex: 1;
    overflow: hidden;
    padding: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Scrollable Content Area */
.scrollable-content {
    flex: 1;
    overflow-y: scroll !important;
    min-height: 0;
    max-height: calc(100% - 80px);
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Custom scrollbar for webkit browsers */
.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Question Section */
.question-section {
    padding: 18px 24px 20px 24px;
}

.question-card {
    background: rgba(237, 243, 248, 0.6);
    border-radius: 12px;
    padding: 20px;
}

.question-card p:first-child {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 10px 0;
}

.question-description {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 16px 0;
}

.sales-assistant-bold {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

.detail-btn {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    background: #0A66C2;
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background: #004182;
}

/* Chat Container */
.chat-container {
    padding: 0 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: min-content;
}

/* AI Response Container */
.ai-response-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

/* AI Thinking Animation */
.ai-thinking-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.ai-thinking {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.thinking-dots {
    display: flex;
    gap: 4px;
}

.thinking-dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    animation: thinking-pulse 1.4s infinite ease-in-out;
}

.thinking-dot:nth-child(1) {
    animation-delay: 0s;
}

.thinking-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.thinking-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes thinking-pulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.thinking-text {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Typing Animation */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: rgba(0, 0, 0, 0.6);
    animation: blink 1s infinite;
    margin-left: 1px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Recommendation Card in Chat */
.recommendation-card {
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.recommendation-card h3 {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 12px 0;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.recommendation-card p {
    margin-bottom: 16px;
    color: #666666;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

}

.recommendation-card .button-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0 !important;
}

.recommendation-card .btn-primary {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    background: #0A66C2;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recommendation-card .btn-primary:hover {
    background: #004182;
}

.recommendation-card .recommendation-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px !important;
}

/* User Message */
.user-message-container {
    display: flex;
    justify-content: flex-end !important;
    margin-top: 16px;
}

.user-message-container:first-child {
    margin-top: 0;
}

.user-message {
    background: #E6F7FF;
    border-radius: 16px;
    padding: 16px;
    max-width: fit-content;
}

.user-message p {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
}

/* Assistant Response */
.assistant-response-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.assistant-response {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 18px 16px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.response-content {
    margin-bottom: 16px;
}

.response-content p {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 10px 0;
}

/* Typing animation text styling */
.response-content {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
}

.response-content p:last-child {
    margin-bottom: 0;
}

.response-content ol {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
    margin: 10px 0;
    padding-left: 20px;
}

.response-content li {
    margin-bottom: 10px;
    margin-left: 1px;
}

.response-content li:last-child {
    margin-bottom: 0;
}

/* Feedback Buttons */
.feedback-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.feedback-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.feedback-btn i {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

/* Follow-up Input */
.follow-up-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 12px 24px 16px 24px;
    border-top: 1px solid rgba(140, 140, 140, 0.2);
    z-index: 10;
}

.follow-up-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.56);
    border-radius: 50px;
    padding: 11px 20px;
    gap: 8px;
}

.follow-up-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
}

.follow-up-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.send-button {
    width: 14px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
}

.send-button:hover {
    color: #0A66C2;
}

.send-button i {
    font-size: 12px;
}

/* LinkedIn Recruiter Styles */
.recruiter-main {
    background: #FFFFFF;
    min-height: calc(100vh - 56px);
    padding: 0;
    position: relative;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 0;
}

.hero-svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}



/* Greeting Section */
.greeting-section {
    text-align: center;
    padding: 0 0 25px;
    margin-top: -10px;
}

.greeting-section h1 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
    padding: 0 20px 30px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 660px;
}

.search-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 12px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-icon {
    color: #656C76;
    font-size: 16px;
    margin-right: 16px;
    flex-shrink: 0;
}

.main-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #24292F;
    background: transparent;
}

.main-search-input::placeholder {
    color: #656C76;
}

.add-search-btn {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    color: #656C76;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.add-search-btn:hover {
    background: #F6F8FA;
    color: #0A66C2;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Suggestions Section */
.suggestions-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.suggestion-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F9FAFB;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #24292F;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.suggestion-chip:hover {
    background: #F6F8FA;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggestion-chip i {
    color: #0A66C2;
    font-size: 12px;
}

.sparkle-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.refresh-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(13%) sepia(9%) saturate(1157%) hue-rotate(177deg) brightness(94%) contrast(92%);
}

.more-chip {
    background: #F6F8FA;
    border: none;
    color: #0A66C2;
}

.more-chip .refresh-icon {
    filter: brightness(0) saturate(100%) invert(22%) sepia(82%) saturate(1234%) hue-rotate(201deg) brightness(93%) contrast(92%);
}

.more-chip i {
    color: #656C76;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #656C76;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.tab-btn.active {
    color: #057642;
    border-bottom-color: #057642;
}

.tab-btn:hover:not(.active) {
    color: #24292F;
}

/* Content Container */
.content-container {
    background: #FFFFFF;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background: #FFFFFF;
}

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

.section-header h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #24292F;
    margin: 0;
}

.view-all-link {
    color: #0A66C2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Project Cards */
.project-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

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

.project-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #24292F;
    margin: 0;
}

.menu-btn {
    background: none;
    border: none;
    color: #656C76;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.menu-btn:hover {
    background: #F6F8FA;
}

.project-details {
    font-size: 12px;
    color: #656C76;
    margin: 0 0 4px 0;
}

.job-post {
    font-size: 12px;
    color: #656C76;
    margin: 0 0 16px 0;
}

.project-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 6px;
}

.stat-number {
    font-size: 14px;
    font-weight: 600;
    color: #0A66C2;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #656C76;
    margin: 0;
}

/* Search Items */
.search-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 16px;
    background: #FFFFFF;
}

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

.search-item-icon {
    color: #656C76;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.search-item-icon.saved {
    color: #24292F;
}

.search-item-content {
    flex: 1;
}

.search-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.search-label {
    font-size: 14px;
    font-weight: 500;
    color: #24292F;
}

.search-time {
    font-size: 12px;
    color: #656C76;
}

.search-description {
    font-size: 12px;
    color: #656C76;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .greeting-section h1 {
        font-size: 32px;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }
    
    .suggestions-section {
        padding: 0 16px 30px;
    }
    
    .suggestion-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .project-stats {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .city-illustration {
        height: 150px;
    }
    
    .building-1 { height: 90px; }
    .building-2 { height: 75px; }
    .building-3 { height: 105px; }
    .building-4 { height: 80px; }
    .building-5 { height: 95px; }
 } 