:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --background-color: #ffffff;
    --text-color: #1f2937;
    --gray-light: #f3f4f6;
    --gray-medium: #9ca3af;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links button {
        width: 100%;
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Hero Main Section - Isolated styles */
.hero-main {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    text-align: center;
}

.hero-main-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-main-tag span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-main h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-main-title {
    color: #1e293b;
}

.hero-main-accent {
    color: var(--primary-color);
}

.hero-main-description {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-main-pitch {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.hero-main-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #374151;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    transition: transform 0.2s ease;
}

.hero-feature:hover {
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.hero-main-cta .cta-button {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    gap: 0.75rem;
}

.hero-main-subtext {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 1rem;
}

.hero-main-metrics {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-metric {
    text-align: center;
}

.hero-metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-metric-label {
    font-size: 1rem;
    color: #4b5563;
}

/* Responsive styles specific to hero-main */
@media (max-width: 768px) {
    .hero-main {
        padding: 3rem 1.5rem;
    }

    .hero-main h1 {
        font-size: 2.5rem;
    }

    .hero-main-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-main-metrics {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main h1 {
        font-size: 2rem;
    }

    .hero-main-pitch {
        font-size: 1.125rem;
    }

    .hero-main-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Replace stats section styles with these */
.benefits {
    padding: 5rem 5%;
    background-color: var(--gray-light);
    text-align: center;
}

.benefits h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-item p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits {
        padding: 4rem 1rem;
    }
    
    .benefits-grid {
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.footer-section .social-links a {
    font-size: 1.25rem;
}

.footer-section i {
    width: 1.25rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
}

/* Responsive Navigation */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex !important;
    }
}

/* Responsive Hero Section */
.hero {
    text-align: center;
    padding: 5rem 1rem;
    background-color: var(--gray-light);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Responsive Listings Grid */
.featured-listings {
    padding: 5rem 5%;
    background-color: var(--gray-light);
}

.featured-listings h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-color);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.listing-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.listing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.listing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.industry-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
}

.listing-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.stat {
    text-align: center;
}

.stat i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stat .label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
}

.stat .value {
    display: block;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color);
}

.stat .growth {
    display: block;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 500;
}

.listing-details {
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Marketplace Section */
.marketplace-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.btn-marketplace {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 250px;
}

.btn-marketplace:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-marketplace i {
    font-size: 1.25rem;
}

.marketplace-info {
    margin-top: 1rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.listing-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-growth {
    font-weight: 600;
    color: #10b981; /* Green for positive growth */
}

.btn-view-listing {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-view-listing:hover {
    background-color: #3b82f6;
}

.view-all-listings {
    text-align: center;
    margin-top: 3rem;
}

.btn-marketplace {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-marketplace:hover {
    background-color: var(--primary-color);
}

/* Listing Details Modal Styles */
.listing-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2500;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
    overflow: hidden; /* Prevent body scrolling */
}

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

.listing-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.listing-details-left {
    background: linear-gradient(135deg, var(--primary-color), #4338ca);
    color: white;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.listing-details-right {
    overflow-y: auto;
    max-height: 90vh;
    padding: 2.5rem;
    background-color: white;
}

/* Scrollbar styling for right section */
.listing-details-right::-webkit-scrollbar {
    width: 8px;
}

.listing-details-right::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

.listing-details-right::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .listing-details-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        width: 95%;
    }

    .listing-details-left {
        position: static;
        border-top-right-radius: 1.5rem;
        border-bottom-left-radius: 0;
    }

    .listing-details-right {
        max-height: 60vh;
    }
}

.listing-details-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gray-medium);
    cursor: pointer;
    transition: color 0.3s ease;
}

.listing-details-close:hover {
    color: var(--text-color);
}

.listing-details-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.listing-details-left .listing-type {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.listing-details-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.listing-metric-detail {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.listing-metric-detail-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.listing-metric-detail-value {
    font-size: 1.5rem;
    font-weight: 600;
}

.listing-additional-details {
    margin-top: 2rem;
}

.listing-additional-details h3 {
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.listing-additional-details ul {
    list-style-type: none;
    padding: 0;
}

.listing-additional-details li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.listing-contact {
    margin-top: 2rem;
    text-align: center;
}

.btn-contact-seller {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-contact-seller:hover {
    background-color: #3b82f6;
}

/* Responsive Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background-color: var(--gray-light);
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* Responsive How It Works Section */
#how-it-works {
    padding: 4rem 5%;
}

#how-it-works h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Responsive Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 5% 2rem;
}

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Add smooth transitions */
.listing-card, .step, .stat-item {
    transition: transform 0.3s ease;
}

.listing-card:hover, .step:hover {
    transform: translateY(-5px);
}

/* Add mobile menu toggle functionality */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-toggle {
    display: none; /* Hide by default */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: var(--text-color);
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        display: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 1.25rem;
    width: 90%;
    max-width: 380px;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 95vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-10%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-medium);
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--text-color);
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 0.75rem;
}

.auth-tab {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    text-align: center;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.auth-form button {
    width: 100%;
    margin-top: 1rem;
}

.auth-message {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-color);
}

.auth-message.error {
    color: #dc2626;
}

.auth-message.success {
    color: #059669;
}

/* Add these styles for the Google button and divider */
.google-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem;
    margin-bottom: 0.75rem;
    background-color: white;
    border: 1px solid var(--gray-light);
    border-radius: 0.375rem;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-auth-btn:hover {
    background-color: var(--gray-light);
    border-color: var(--gray-medium);
}

.google-auth-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: #4285f4;
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

.divider {
    text-align: center;
    margin: 0.75rem 0;
    position: relative;
    color: var(--gray-medium);
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--gray-light);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.listing-card-header h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.listing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.listing-card-header h3 {
    max-width: 100%;
    text-align: center;
}

.nav-right {
    position: relative;
}

.user-profile-dropdown {
    position: relative;
}

.profile-icon {
    cursor: pointer;
    font-size: 36px; /* Increased size */
    color: var(--text-color);
    transition: color 0.3s ease;
}

.profile-icon:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    z-index: 1000;
    margin-top: 10px;
    transform-origin: top right;
    animation: dropdownFadeIn 0.2s ease-out;
}

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

.dropdown-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.user-info {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--gray-light);
}

.profile-placeholder {
    font-size: 50px;
    color: var(--primary-color);
    margin-right: 15px;
}

.user-info div {
    flex-grow: 1;
}

.user-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.user-info p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 14px;
}

.dropdown-actions {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.dropdown-actions a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-actions a:hover {
    background-color: var(--gray-light);
}

.dropdown-actions a i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--primary-color);
}

.delete-account {
    color: #dc2626 !important;
}

.dashboard-nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-nav .logo img {
    height: 50px; /* Increased from previous size */
    width: auto;
}

.dashboard-nav .logo span {
    font-size: 1.75rem; /* Larger font size */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px; /* Optional: tightens the text slightly */
}

/* Dashboard Main Styles */
.dashboard-main {
    background-color: #f8fafc;
    min-height: calc(100vh - 70px);
    padding: 2rem;
}

.dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2.5rem;
}

.welcome-content h1 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.welcome-content p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Stats Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-header i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.stat-header h3 {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-footer span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Section Cards */
.section-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    font-size: 1.25rem;
    color: #1e293b;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.secondary {
    background: #f3f4f6;
    color: #374151;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Activity List */
.activity-list {
    min-height: 300px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    color: #64748b;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.view-all-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: #f1f5f9;
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.view-all-btn:hover {
    background: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-main {
        padding: 1rem;
    }

    .welcome-content h1 {
        font-size: 1.75rem;
    }

    .stats-overview {
        grid-template-columns: 1fr;
    }
}

/* Feedback Modal Styles */
.feedback-options {
    margin: 1.5rem 0;
}

.feedback-option {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feedback-option input[type="radio"] {
    cursor: pointer;
}

.feedback-option label {
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
}

.other-reason {
    margin-top: 1rem;
}

.other-reason textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.feedback-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-group input:hover {
    border-color: #cbd5e1;
}

.forgot-password {
    text-align: right;
    margin-bottom: 1rem;
}

.forgot-password a {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Alert/Notification styles */
.alert {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    z-index: 2000;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    border-left: 4px solid #10b981;
}

.alert-info {
    border-left: 4px solid #3b82f6;
}

.alert-error {
    border-left: 4px solid #ef4444;
}

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

/* Profile Dropdown Styles */
.profile-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-light);
    transition: background-color 0.2s ease;
}

.profile-icon:hover {
    background: var(--gray-medium);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.dropdown-card {
    padding: 1rem;
    min-width: 240px;
}

/* Update Listing Card Styles */
.listing-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.listing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.listing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.industry-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
}

.listing-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Center the View Details button */
.listing-content .btn-primary {
    align-self: center;
    min-width: 160px;
    margin-top: auto;
    text-align: center;
}

/* Update Marketplace Section */
.marketplace-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.btn-marketplace {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 250px;
}

.btn-marketplace:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-marketplace i {
    font-size: 1.25rem;
}

.marketplace-info {
    margin-top: 1rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .listing-header h3 {
        font-size: 1.25rem;
    }

    .listing-content {
        padding: 1.25rem;
    }

    .listing-stats {
        gap: 1rem;
    }

    .stat .value {
        font-size: 1.1rem;
    }

    .btn-marketplace {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 220px;
    }
}

/* Update listings grid for better spacing */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Listings Section Title */
.featured-listings {
    padding: 4rem 0 2rem;
}

.featured-listings h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Make buttons consistent across cards */
.btn-primary.view-details {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
}

.btn-primary.view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Listing Popup Styles */
.listing-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.listing-popup-content {
    background: white;
    border-radius: 1rem;
    width: 100%;
    max-width: 900px;
    margin: auto;
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem 1rem 0 0;
}

.popup-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    margin-bottom: 1.5rem;
}

.metric {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metric i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.metric .label {
    display: block;
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.metric .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
}

.metric .growth {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 500;
}

.popup-details {
    padding: 0 1.5rem 1.5rem;
}

.additional-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.metric-item .label {
    display: block;
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.metric-item .value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.25rem;
}

.description {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-light);
}

.description h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.description-content {
    line-height: 1.4;
    color: var(--text-color);
    font-size: 0.95rem;
}

.description-content strong {
    display: block;
    font-size: 0.95rem;
    margin: 0.75rem 0 0.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.description-content .list-item {
    padding-left: 0.5rem;
    margin: 0.125rem 0;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-top: 1px solid var(--gray-light);
    justify-content: center;
    border-radius: 0 0 1rem 1rem;
}

.popup-actions button {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 500;
}

.popup-actions button i {
    font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .additional-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-actions button {
        width: 100%;
    }
}

/* Verification Warning Banner */
.verification-warning {
    background-color: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-content i {
    color: #DC2626;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-message {
    flex: 1;
}

.warning-message h3 {
    color: #991B1B;
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.warning-message p {
    color: #7F1D1D;
    margin: 0 0 1rem 0;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    animation: slideIn 0.3s ease-out;
    z-index: 1000;
}

.notification.success {
    background-color: #ECFDF5;
    border: 1px solid #6EE7B7;
}

.notification.error {
    background-color: #FEF2F2;
    border: 1px solid #FCA5A5;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification i {
    font-size: 1.25rem;
}

.notification.success i {
    color: #059669;
}

.notification.error i {
    color: #DC2626;
}

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

/* Status Toggle Switch */
.status-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #059669;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.status-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Listing Details Button */
.btn-details {
    background: none;
    border: none;
    color: #6b7280;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.btn-details:hover {
    color: var(--primary-color);
}

/* My Listings Section */
.my-listings-section {
    margin-top: 2rem;
    width: 100%;
}

.my-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.my-listing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
}

.my-listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.my-listing-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.my-listing-header h3 {
    margin: 0;
    color: #111827;
    font-size: 1.25rem;
}

.my-listing-body {
    padding: 1.25rem;
}

.my-listing-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-listing-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.my-listing-footer {
    padding: 1rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.listing-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-marketplace, .btn-sold {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-marketplace {
    background: #eff6ff;
    color: #1d4ed8;
}

.btn-marketplace:hover {
    background: #dbeafe;
}

.btn-marketplace.active {
    background: #1d4ed8;
    color: white;
}

.btn-sold {
    background: #ecfdf5;
    color: #059669;
}

.btn-sold:hover {
    background: #d1fae5;
}

.btn-sold.active {
    background: #059669;
    color: white;
}

.business-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.my-listing-body h3 {
    margin: 0 0 1rem 0;
    color: #111827;
    font-size: 1.25rem;
}

.my-listing-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

/* Detail Modal Styles */
.listing-details-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
}

.detail-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.detail-section h3 {
    margin: 0 0 1rem 0;
    color: #111827;
    font-size: 1.125rem;
}

.detail-section p {
    margin: 0.5rem 0;
    color: #4b5563;
}

.detail-section strong {
    color: #111827;
    font-weight: 500;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.listing-details-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.listing-details-header .business-type {
    margin-bottom: 1rem;
}

.listing-details-header h2 {
    font-size: 1.5rem;
    color: #111827;
    margin: 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    border-radius: 0.75rem;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.close-modal:hover {
    color: #111827;
}

/* Additional tag styles */
.channel-tag {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin: 0.25rem;
    display: inline-block;
}

.asset-tag {
    background: #dcfce7;
    color: #15803d;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin: 0.25rem;
    display: inline-block;
}

.listing-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.detail-section h3 {
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-section p {
    margin: 0.75rem 0;
    color: #4b5563;
    line-height: 1.5;
}

.detail-section strong {
    color: #111827;
    font-weight: 500;
}

.detail-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.detail-section a:hover {
    text-decoration: underline;
}

/* Success Message Styles */
.success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.success-message i {
    font-size: 1.5rem;
    color: #059669;
}

.message-content {
    display: flex;
    flex-direction: column;
}

.message-content strong {
    color: #059669;
    font-size: 0.875rem;
}

.message-content span {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Update notification styles */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
    border-left: 4px solid;
}

.notification.success {
    border-left-color: #059669;
    background: #f0fdf4;
}

.notification.error {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.notification.info {
    border-left-color: #3b82f6;
    background: #eff6ff;
}

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

.users-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.user-item:hover {
    background: #f3f4f6;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-weight: 600;
}

.user-info {
    flex: 1;
}

.user-info h4 {
    color: #111827;
    font-size: 0.875rem;
    margin: 0;
}

.user-info p {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
}

.user-joined {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Remove the twitter-showcase styles and add these */
.platform-process {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: white;
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .platform-process {
        padding: 3rem 1rem;
    }
    
    .process-grid {
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
}

/* Update Modal Styles */
.modal-content {
    max-width: 400px;
    width: 90%;
    padding: 2rem;
}

.auth-tabs {
    margin: -2rem -2rem 2rem;
    padding: 0 1rem;
}

.auth-tab {
    padding: 1rem;
    font-size: 0.95rem;
}

.auth-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.google-auth-btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-group input {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
}

.forgot-password {
    margin: 0.5rem 0 1rem;
    font-size: 0.85rem;
}

.divider {
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for modal content */
.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for any other scrollable elements */
.scrollable-element::-webkit-scrollbar {
    display: none;
}

.scrollable-element {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
