/* Mobile Comparison Tool Styles */

.comparison-tool {
    margin-bottom: 30px;
}

.comparison-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.comparison-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #007bff;
}

.mobile-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-img img {
    max-height: 80px;
    object-fit: contain;
}

.form-control-lg {
    height: 50px;
    font-size: 16px;
}

/* VS Badge Styles */
.vs-badge {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 14px;
}

/* Comparison Card Styles */
.comparison-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}

@media (max-width: 767px) {
    .comparison-item {
        margin-bottom: 15px;
    }
    
    .mobile-img img {
        max-height: 60px;
    }
}
