﻿.tool-page {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;

}

    .tool-page h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

.tool-desc {
    color: #777;
    margin-bottom: 25px;
}

.tool-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

textarea {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: monospace;
}

button {
    background: #6366f1;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

    button:hover {
        background: #4f46e5;
    }

.tool-info {
    margin-top: 40px;
}

    .tool-info h2 {
        margin-bottom: 10px;
    }

pre {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 6px;
}



.tool-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

    .tool-actions button {
        background: #6366f1;
        color: white;
        border: none;
        padding: 8px 14px;
        border-radius: 8px;
        cursor: pointer;
    }

        .tool-actions button:hover {
            background: #4f46e5;
        }




#message {
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}

 


.seo-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .seo-section h2 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .seo-section p {
        color: #555;
        line-height: 1.6;
    }

    .seo-section ul {
        padding-left: 18px;
    }

    .seo-section li {
        margin-bottom: 6px;
    }

    .seo-section a {
        color: #6366f1;
        text-decoration: none;
    }

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




.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 16px;
    margin-top: 15px;
}

.related-card {
    background: #f9fafb;
    border: 1px solid #eee;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .related-card:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

.related-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.related-title {
    font-weight: 500;
}