/* 
   File         : tools.css
   Description  : Styling for the tools listing/directory page (tools.php)
   Author       : ProfAff Team
   Note         : For individual tool pages, see tools/tools-unified.css
*/

.tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tool-category {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.category-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.tool-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 20px;
}

.tool-item {
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tool-item:hover {
    box-shadow: 0 4px 8px rgba(0,124,186,0.15);
    transform: translateY(-2px);
    border-color: #007cba;
    background: #f8f9fa;
}

.tool-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #007cba;
}

.tool-item-description {
    margin: 0;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

.tools-section {
    margin-top: 40px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.tools-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.calculator-links {
    margin-bottom: 15px;
}

.calculator-links a {
    color: #28a745;
    text-decoration: none;
    margin-right: 10px;
}

.calculator-links a:hover {
    text-decoration: underline;
}
