/* induspecs.com Global Styles */

/* Custom scrollbar for tables if needed */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

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

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.related-tools-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }
        .related-tools-heading {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }
        .related-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.75rem;
        }
        .related-tool-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.875rem 1rem;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            text-decoration: none;
            color: #065f46;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .related-tool-card:hover {
            background: #ecfdf5;
            border-color: #6ee7b7;
            box-shadow: 0 2px 8px rgba(16,185,129,0.12);
        }
        .related-tool-arrow {
            color: #6ee7b7;
            font-size: 1rem;
            margin-left: 0.5rem;
            flex-shrink: 0;
        }
        @media (max-width: 480px) {
            .related-tools-grid {
                grid-template-columns: 1fr 1fr;
            }
        }