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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
}

/* Page-specific styles */
/* Platform Cards */
.platform-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.platform-card:hover {
    transform: translateY(-4px);
}

.platform-card .platform-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* Service Details */
.service-details {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.service-details .service-header {
    margin-bottom: var(--spacing-lg);
}

/* Profile Section */
.profile-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

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

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-card .stat-value {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
}

/* API Documentation */
.api-doc {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.api-endpoint {
    background: var(--hover-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.api-method {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-weight: 500;
    margin-right: var(--spacing-sm);
}

.api-method.get { background: #10B981; color: white; }
.api-method.post { background: #4f46e5; color: white; }
.api-method.put { background: #F59E0B; color: white; }
.api-method.delete { background: #EF4444; color: white; }

:root {
    --primary-color: #4f46e5;
    --secondary-color: #818cf8;
    --accent-color: #6366f1;
    --background-color: #f8fafc;
    --text-color: #1f2937;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
}

.navbar-inverse {
    background-color: white;
    border: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color) !important;
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.nav-link, .navbar-nav > li > a {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.8rem 1rem;
    transition: color 0.2s;
}

.nav-link:hover, .navbar-nav > li > a:hover {
    color: var(--primary-color) !important;
}

/* Table Styles */
.table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.table th {
    background-color: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
    color: var(--text-color);
    font-weight: 600;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-success {
    background-color: #10b981;
    border-color: #10b981;
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

.btn-default {
    background-color: white;
    border-color: #e5e7eb;
    color: var(--text-color);
}

.btn-default:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.8em;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85em;
    background-color: #e5e7eb;
    color: var(--text-color);
    margin-right: 0.3rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* API Provider Badge Styles */
.table .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.7em;
    border-radius: 4px;
    font-weight: 500;
}

.table .badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.table .badge.bg-success {
    background-color: var(--success-color) !important;
    color: white;
}

.table .badge.bg-secondary {
    background-color: #6c757d !important;
    color: white;
}

/* Badge Container in Table */
.table td .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.table td .badge + .badge {
    margin-left: 0.5rem;
}

/* Form Styles */
.form-control {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* Help Page Styles */
.help-header {
    text-align: center;
    margin-bottom: 3rem;
}

.help-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.help-header .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Box */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box .input-group {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.search-box .input-group-text {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.25rem;
}

.search-box .form-control {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Help Cards */
.help-cards {
    margin-bottom: 4rem;
}

.help-card {
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.help-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.help-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.help-text {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 4rem 0;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.instagram {
    background: #E4405F;
}

.social-link.telegram {
    background: #0088cc;
}

/* Help Modal */
.modal-content {
    border: none;
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.modal-content.show {
    opacity: 1;
    transform: scale(1);
}

.help-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.help-modal-content {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .help-header .section-title {
        font-size: 2rem;
    }

    .help-header .section-subtitle {
        font-size: 1rem;
    }

    .search-box .form-control {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .help-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .help-title {
        font-size: 1.1rem;
    }

    .help-text {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section .section-title {
        font-size: 1.75rem;
    }

    .contact-section .section-subtitle {
        font-size: 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Footer Styles */
.bottom {
    background-color: white;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.bottom h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bottom-links {
    list-style: none;
    padding: 0;
}

.bottom-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Provider Icons and Badges */
.provider-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
}

.premium-badge {
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #e5e7eb;
}

.premium-badge i {
    color: #fbbf24;
}

/* Tag Styles */
.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    margin: 0.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.tag-badge i {
    font-size: 0.9rem;
    color: #6b7280;
}

.tag-badge:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* API Tags */
.tag-badge.api-v2 {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}

.tag-badge.api-v3 {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}

/* Provider Tag */
.tag-badge.provider {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}

/* Time Tag */
.tag-badge.time {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}

/* Early Lister Tag */
.tag-badge.early-lister {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}

/* Content Area */
.content {
    padding: 2rem 0;
}

/* Card Styles */
.card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card-body {
    padding: 1.5rem;
}

/* Platform Cards */
.platform-cards {
    margin-top: 2rem;
}

.platform-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.platform-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.platform-card .platform-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.platform-card .service-count {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Platform-specific colors */
.platform-card.instagram .platform-icon {
    color: #E4405F;
}

.platform-card.youtube .platform-icon {
    color: #FF0000;
}

.platform-card.tiktok .platform-icon {
    color: #000000;
}

.platform-card.twitter .platform-icon {
    color: #1DA1F2;
}

.platform-card.facebook .platform-icon {
    color: #1877F2;
}

.platform-card.telegram .platform-icon {
    color: #0088cc;
}

/* Provider Info */
.provider-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.banner-link:hover .banner-image {
    transform: scale(1.05);
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-info.small {
    font-size: 0.9rem;
}

.country-flag {
    color: #6B7280;
}

.domain-text {
    color: var(--text-color);
    font-weight: 500;
}

.provider-status {
    display: flex;
    align-items: center;
}

.vote-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: all 0.2s;
}

.tag-badge:hover {
    background: #e5e7eb;
}

.tag-badge i {
    color: #6B7280;
    font-size: 0.8rem;
}

.tag-more {
    cursor: pointer;
}

@media (max-width: 768px) {
    .table {
        margin-bottom: 1rem;
    }

    .provider-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .domain-info.small {
        font-size: 0.8rem;
    }

    .tag-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .hidden-xs {
        display: none;
    }
}

/* Section Title */
.section-title {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 600;
}

/* Content Spacer */
.content-spacer {
    height: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table-responsive {
        border: none;
    }
    
    .brand-text {
        display: none;
    }
    
    .help-header {
        padding: 2rem 0;
    }
    
    .hidden-xs {
        display: none;
    }
    
    .platform-card {
        padding: 1rem;
    }
    
    .platform-card .platform-icon {
        font-size: 1.5rem;
    }
    
    .platform-card h4 {
        font-size: 1rem;
    }
    
    .platform-card .service-count {
        font-size: 0.8rem;
    }
}

/* Profile Page Styles */
.profile-sidebar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profile-header {
    padding: 1rem 0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.initials {
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.profile-email {
    color: #6b7280;
}

.profile-nav .list-group-item {
    border: none;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    transition: all 0.2s;
}

.profile-nav .list-group-item:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.profile-nav .list-group-item.active {
    background-color: #f0f4ff;
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.account-status {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.status-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.status-item {
    padding: 0.5rem 0;
}

.status-label {
    font-size: 0.9rem;
}

.status-value {
    font-size: 0.9rem;
}

.profile-content {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Card Header Styles */
.card-header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card-header .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.card-header .card-title {
    margin-bottom: 0;
}

.profile-content .card-header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.profile-form .form-group {
    margin-bottom: 1.5rem;
}

.profile-form .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.profile-form .form-control {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.profile-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.profile-form .form-control:disabled {
    background-color: #f8fafc;
    cursor: not-allowed;
}

.profile-form .form-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.divider {
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.password-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Alert Styles */
.alert {
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.alert.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.alert.fade.show {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-sidebar {
        margin-bottom: 1.5rem;
    }

    .avatar-circle {
        width: 60px;
        height: 60px;
    }

    .initials {
        font-size: 1.5rem;
    }

    .profile-name {
        font-size: 1.1rem;
    }

    .profile-form .form-control {
        padding: 0.5rem 0.75rem;
    }
}

/* Search Page Styles */
.filter-sidebar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.filter-form {
    padding: 0.5rem 0;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.filter-select {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    width: 100%;
    transition: all 0.2s;
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* Tag Categories */
.tag-category {
    margin-bottom: 1.5rem;
}

.category-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-color);
    background-color: #f3f4f6;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-item:hover {
    transform: translateY(-1px);
}

.tag-item.active {
    background-color: var(--primary-color);
    color: white;
}

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

.tag-count {
    background-color: rgba(0,0,0,0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Tag Colors */
.tag-primary {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.tag-info {
    background-color: #e0f2fe;
    color: #0284c7;
}

.tag-success {
    background-color: #dcfce7;
    color: #16a34a;
}

.tag-warning {
    background-color: #fef3c7;
    color: #d97706;
}

.tag-danger {
    background-color: #fee2e2;
    color: #dc2626;
}

.tag-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

/* Search Results */
.search-header {
    margin-bottom: 2rem;
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-count {
    font-size: 0.9rem;
    color: #6b7280;
}

.search-result-item {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.result-info {
    flex: 1;
}

.result-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.result-title a {
    color: var(--text-color);
    text-decoration: none;
}

.result-title a:hover {
    color: var(--primary-color);
}

.result-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6b7280;
}

.result-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
}

.result-actions {
    margin-left: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-sidebar {
        margin-bottom: 1.5rem;
    }

    .search-result-item {
        margin-bottom: 1rem;
    }

    .result-actions {
        margin-top: 1rem;
        margin-left: 0;
    }

    .tag-cloud {
        gap: 0.25rem;
    }

    .tag-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}



/* Site Details Page Styles */
.site-details-page {
    background-color: var(--background-color);
    min-height: 100vh;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    margin-bottom: -3rem;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.banner-card {
    padding: 0;
    overflow: hidden;
}

.site-banner {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--hover-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-actions .btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    border: 1px solid #e5e7eb;
}

.quick-actions .btn i {
    font-size: 0.9rem;
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
}

.quick-actions .btn-outline-primary {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #374151;
}

.quick-actions .btn-outline-primary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
}

.quick-actions .btn-outline-success {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #374151;
}

.quick-actions .btn-outline-success:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.quick-actions .clipboard.copied {
    background: #dcfce7 !important;
    border-color: #16a34a !important;
    color: #15803d !important;
}

.vote-form-card {
    display: none;
    animation: slideDown 0.3s ease-out;
}

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

.vote-form-card.show {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .site-title {
        font-size: 2rem;
    }

    .site-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .content-card {
        margin-bottom: 1rem;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.2s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Reviews Section */
.review-form {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.review-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
}

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

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

.review-author {
    font-weight: 500;
    color: var(--text-color);
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-content {
    color: #4b5563;
    line-height: 1.6;
}

/* Stats Widget */
.vote-stats .stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stats-label {
    font-weight: 500;
    color: var(--text-color);
}

.stats-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Share Widget */
.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-buttons .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    transition: transform 0.2s;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

.btn-twitter {
    background-color: #1DA1F2;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-linkedin {
    background-color: #0A66C2;
}

.btn-copy {
    background-color: #6b7280;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }

    .site-actions {
        margin-left: 0;
        margin-top: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .share-buttons {
        justify-content: center;
    }
}

/* Provider Table Styles */
.provider-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.provider-table th {
    background-color: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
    color: var(--text-color);
    font-weight: 600;
    padding: 1rem;
}

.provider-table td {
    padding: 1rem;
    vertical-align: middle;
}

.provider-table tr:hover {
    background-color: #f8fafc;
}

.provider-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
}

.rank-number {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.country-flag {
    color: #6B7280;
}

.domain-text {
    color: var(--text-color);
    font-weight: 500;
}

.provider-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vote-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: all 0.2s;
}

.tag-badge:hover {
    background: #e5e7eb;
}

.tag-badge i {
    color: #6B7280;
    font-size: 0.8rem;
}

.tag-more {
    cursor: pointer;
}

@media (max-width: 768px) {
    .provider-table {
        margin-bottom: 1rem;
    }

    .provider-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .rank-number {
        font-size: 0.8rem;
    }

    .domain-info {
        font-size: 0.85rem;
    }

    .tag-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .hidden-xs {
        display: none;
    }
}

/* Dashboard Site Cards */
.sites-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.site-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    width: 100%;
    max-width: 100%;
}

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

.site-banner {
    width: 100%;
    min-height: 80px;
    max-height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.site-banner img {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.site-card:hover .site-banner img {
    transform: scale(1.05);
}

.site-info {
    padding: 1.5rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.site-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.site-header h5 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header h5 a:hover {
    color: var(--primary-color);
}

.site-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.9rem;
}

.site-url i {
    color: #6b7280;
    font-size: 0.8rem;
}

.site-url a {
    color: #4b5563;
    text-decoration: none;
    word-break: break-all;
}

.site-url a:hover {
    color: var(--primary-color);
}

.site-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.site-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.site-stats .stat i {
    font-size: 0.8rem;
}

.site-stats .stat i.fa-thumbs-up {
    color: #10b981;
}

.site-stats .stat i.fa-circle.text-success {
    color: #10b981;
}

.site-stats .stat i.fa-circle.text-danger {
    color: #ef4444;
}

/* Dropdown Menu Styling */
.site-header .dropdown-toggle {
    border: none;
    background: none;
    color: #6b7280;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.site-header .dropdown-toggle:hover {
    background: #f3f4f6;
    color: #374151;
}

.site-header .dropdown-menu {
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.site-header .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #374151;
    transition: all 0.2s ease;
}

.site-header .dropdown-item:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.site-header .dropdown-item.text-danger {
    color: #dc2626;
}

.site-header .dropdown-item.text-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Empty State */
.empty-state {
    text-align: center;
    color: #9ca3af;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .sites-container {
        gap: 1rem;
    }
    
    .site-card {
        margin-bottom: 1rem;
    }
    
    .site-banner {
        min-height: 60px;
        max-height: 120px;
    }
    
    .site-info {
        padding: 1rem;
    }
    
    .site-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Blog Section Styles */
.blog-section {
    background: #f8fafc;
    margin-top: 3rem;
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-section .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.blog-section .section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(79, 70, 229, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content .btn {
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

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

.blog-content .btn-primary:hover {
    background: #3730a3;
    transform: translateY(-1px);
}

/* Blog page specific styles (matching blog.php) */
.content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.card.h-100 {
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

.card.h-100 .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card.h-100 .card-body .btn {
    margin-top: auto;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.position-absolute.top-0.start-0.m-3 .badge {
    background: rgba(79, 70, 229, 0.9) !important;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
}

/* View Services Page Styles - Using existing CSS patterns */
.service-row {
    transition: all 0.2s ease;
}

.service-row:hover {
    background-color: #f8fafc !important;
    transform: translateY(-1px);
}

.category-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.category-item .accordion-button {
    background: #f8fafc;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--text-color);
}

.category-item .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.category-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.category-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.category-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Service table improvements using existing table styles */
.service-row td {
    vertical-align: middle;
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-row td:first-child {
    font-weight: 500;
    color: var(--primary-color);
}

.service-row .fab, .service-row .fas {
    width: 16px;
    text-align: center;
}

.service-row .fab.fa-instagram {
    color: #e4405f;
}

.service-row .fab.fa-tiktok {
    color: #000000;
}

.service-row .fab.fa-facebook {
    color: #1877f2;
}

.service-row .fab.fa-youtube {
    color: #ff0000;
}

.service-row .fab.fa-twitter {
    color: #1da1f2;
}

/* Filter improvements using existing filter styles */
.filter-input, .filter-select {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.2s ease;
}

.filter-input:focus, .filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Breadcrumb using existing navigation styles */
.breadcrumb {
    background: #f8fafc;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #3730a3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6b7280;
}

/* Card header improvements using existing card styles */
.card-header.bg-primary {
    background: var(--primary-color) !important;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.card-header h5 {
    font-weight: 500;
    margin: 0;
}

/* Stats card using existing stats styles */
.card.border-primary {
    border-color: var(--primary-color) !important;
    border-width: 2px;
}

.card.border-primary .card-body {
    padding: 1.25rem;
}

/* Filter toggle button */
#toggleFiltersBtn {
    background: none;
    border: none;
    color: #6b7280;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#toggleFiltersBtn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Quick search improvements */
.input-group .input-group-text {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #6b7280;
}

.input-group .form-control {
    border-color: #e5e7eb;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Responsive improvements for view-services */
@media (max-width: 768px) {
    .service-row td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .category-item .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .filter-input, .filter-select {
        margin-bottom: 0.5rem;
    }
    
    .breadcrumb {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Tags Card Improvements - Using existing patterns */
.tag-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.tag-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tag-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.tag-category-title i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Keywords styling using existing badge patterns */
.keywords-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s ease;
}

.keyword-badge:hover {
    background: #f3f4f6;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Improve existing tags-container */
.content-card .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.content-card .tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s ease;
    text-decoration: none;
}

.content-card .tag-badge:hover {
    background: #f0f9ff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.content-card .tag-badge i {
    font-size: 0.75rem;
    color: #9ca3af;
}

.content-card .tag-badge:hover i {
    color: var(--primary-color);
}

/* Card title improvements */
.content-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
} 