/* Clean Simple Layout */
.hero-section {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.hero-section h1 {
    color: #1a202c;
}

.hero-section .lead {
    color: #4a5568;
}

/* IP Table Container - Left Side */
.ip-table-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ip-table-container h3 {
    color: #1a202c;
    font-size: 1.25rem;
}

/* Clean Table Styling */
.table-clean {
    margin-bottom: 0;
}

.table-clean tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

.table-clean tbody tr:last-child {
    border-bottom: none;
}

.table-clean tbody tr:hover {
    background: #f9fafb;
}

.table-clean .label-col {
    width: 40%;
    padding: 1rem 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a5568;
    vertical-align: middle;
}

.table-clean .label-col i {
    color: #6366f1;
}

.table-clean .value-col {
    padding: 1rem 0.5rem;
    font-weight: 500;
    color: #1a202c;
    font-size: 0.95rem;
    vertical-align: middle;
}

.table-clean .value-col .ip-value {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    color: #6366f1;
    font-weight: 700;
    font-size: 1rem;
}

.table-clean .user-agent-col {
    word-break: break-word;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Copy Button Small */
.btn-copy-small {
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.btn-copy-small:hover {
    background: #6366f1;
    color: white;
}

/* Map Wrapper - Right Side */
.map-wrapper {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.map-wrapper h3 {
    color: #1a202c;
    font-size: 1.25rem;
}

.map-box {
    flex: 1;
}

.map-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 12px;
    padding: 3rem;
}

.map-placeholder i {
    color: #cbd5e0;
}

/* SEO Content Section */
.seo-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
    color: #1a202c;
    font-size: 2rem;
    border-bottom: 3px solid #6366f1;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.seo-content h3 {
    color: #2d3748;
    font-size: 1.25rem;
}

.seo-content p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.seo-content ul {
    color: #4a5568;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.seo-content ul li {
    margin-bottom: 0.5rem;
}

.seo-content strong {
    color: #2d3748;
    font-weight: 600;
}

.faq-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #6366f1;
    border-radius: 8px;
}

.faq-item p.fw-bold {
    color: #1a202c;
    font-size: 1.05rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
    color: #4a5568;
}

/* Tool Cards */
.tool-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.tool-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tool-card:hover .tool-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.tool-card h5 {
    color: #1a202c;
}

.tool-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .map-wrapper {
        margin-top: 2rem;
    }

    .table-clean .label-col,
    .table-clean .value-col {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .seo-content {
        padding: 2rem 1.5rem;
    }

    .seo-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .table-clean .label-col {
        width: 45%;
    }

    .table-clean .value-col .ip-value {
        font-size: 0.85rem;
    }

    .ip-table-container,
    .map-wrapper {
        padding: 1.5rem;
    }

    .tool-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}