/* Styles for Tools page */

body {
    background: linear-gradient(135deg, #f6f8fa, #e9ebf1);
}

.tools-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.tools-container h1 {
    margin-bottom: 10px;
}

.tools-container p {
    margin-bottom: 25px;
}

#tool-search {
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 25px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
}

.tool-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tool-card a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.home-link {
    margin-top: 40px;
}

