/* Comparison Dashboard CSS */
.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tool-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tool-card h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.comparison-button {
    background: #2ED06E;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.comparison-button:hover {
    background: #24b35c;
}
